diff --git a/CHANGELOG.md b/CHANGELOG.md index 85eb7f027..b8ae99a17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# 2.41.0 + +* Add Felt-style expression support for -j feature filters +* Add --retain-points-multiplier option +* Add tippecanoe_decisions metadata field to record basezoom, drop rate, and multiplier +* Add multiplier thinning (-m) and feature filters (-j) to tippecanoe-overzoom + # 2.40.0 * Slightly reduce compression aggressiveness to improve as-needed dropping speed diff --git a/Makefile b/Makefile index 3968ed490..c7694043a 100644 --- a/Makefile +++ b/Makefile @@ -76,7 +76,7 @@ tippecanoe-json-tool: jsontool.o jsonpull/jsonpull.o csv.o text.o geojson-loop.o unit: unit.o text.o sort.o mvt.o $(CXX) $(PG) $(LIBS) $(FINAL_FLAGS) $(CXXFLAGS) -o $@ $^ $(LDFLAGS) -lm -lz -lsqlite3 -lpthread -tippecanoe-overzoom: overzoom.o mvt.o clip.o +tippecanoe-overzoom: overzoom.o mvt.o clip.o evaluator.o jsonpull/jsonpull.o text.o $(CXX) $(PG) $(LIBS) $(FINAL_FLAGS) $(CXXFLAGS) -o $@ $^ $(LDFLAGS) -lm -lz -lsqlite3 -lpthread -include $(wildcard *.d) @@ -287,6 +287,37 @@ overzoom-test: tippecanoe-overzoom ./tippecanoe-overzoom -o tests/pbf/14-2616-6331.pbf tests/pbf/11-327-791.pbf 11/327/791 14/2616/6331 cmp tests/pbf/14-2616-6331.pbf /dev/null rm tests/pbf/14-2616-6331.pbf + # Thinning + # 243 features in the source tile tests/pbf/0-0-0-pop.pbf + # 9 of them survive as the best of each cluster of 30 + # ./tippecanoe -z1 -r30 --retain-points-multiplier 30 -f -e out.dir tests/ne_110m_populated_places/in.json + # cp out.dir/0/0/0.pbf tests/pbf/0-0-0-pop.pbf + ./tippecanoe-overzoom -y NAME -m -o tests/pbf/0-0-0-pop-filtered.pbf tests/pbf/0-0-0-pop.pbf 0/0/0 0/0/0 + ./tippecanoe-decode tests/pbf/0-0-0-pop-filtered.pbf 0 0 0 > tests/pbf/0-0-0-pop-filtered.pbf.json.check + cmp tests/pbf/0-0-0-pop-filtered.pbf.json.check tests/pbf/0-0-0-pop-filtered.pbf.json + rm tests/pbf/0-0-0-pop-filtered.pbf tests/pbf/0-0-0-pop-filtered.pbf.json.check + # Filtering + # 243 features in the source tile tests/pbf/0-0-0-pop.pbf + # 27 of them match the filter and are retained + ./tippecanoe-overzoom -y NAME -j'{"*":["SCALERANK","eq",0]}' -o tests/pbf/0-0-0-pop-expr.pbf tests/pbf/0-0-0-pop.pbf 0/0/0 0/0/0 + ./tippecanoe-decode tests/pbf/0-0-0-pop-expr.pbf 0 0 0 > tests/pbf/0-0-0-pop-expr.pbf.json.check + cmp tests/pbf/0-0-0-pop-expr.pbf.json.check tests/pbf/0-0-0-pop-expr.pbf.json + rm tests/pbf/0-0-0-pop-expr.pbf tests/pbf/0-0-0-pop-expr.pbf.json.check + # Filtering with multiplier + # 243 features in the source tile tests/pbf/0-0-0-pop.pbf + # 8 features survive into the output, from 9 clusters of 30 + ./tippecanoe-overzoom -y NAME -y SCALERANK -j'{"*":["SCALERANK","eq",0]}' -m -o tests/pbf/0-0-0-filter-mult.pbf tests/pbf/0-0-0-pop.pbf 0/0/0 0/0/0 + ./tippecanoe-decode tests/pbf/0-0-0-filter-mult.pbf 0 0 0 > tests/pbf/0-0-0-filter-mult.pbf.json.check + cmp tests/pbf/0-0-0-filter-mult.pbf.json.check tests/pbf/0-0-0-filter-mult.pbf.json + rm tests/pbf/0-0-0-filter-mult.pbf tests/pbf/0-0-0-filter-mult.pbf.json.check + # Test that overzooming with a multiplier exactly reverses the effect of tiling with a multiplier + ./tippecanoe -q -z5 --preserve-point-density-threshold 8 --retain-points-multiplier 3 -f -e tests/muni/out/out.dir tests/muni/muni.json + ./tippecanoe -q -z5 --preserve-point-density-threshold 8 -f -o tests/muni/out/out.mbtiles tests/muni/muni.json + ./tippecanoe-overzoom -m -o tests/muni/out/out.dir/000.pbf tests/muni/out/out.dir/0/0/0.pbf 0/0/0 0/0/0 + ./tippecanoe-decode tests/muni/out/out.mbtiles 0 0 0 > tests/muni/out/out.dir/direct.json + ./tippecanoe-decode tests/muni/out/out.dir/000.pbf 0 0 0 > tests/muni/out/out.dir/overzoomed.json + cmp tests/muni/out/out.dir/overzoomed.json tests/muni/out/out.dir/direct.json + rm -rf tests/muni/out/out.dir tests/muni/out/out.mbtiles tests/muni/out/out.dir/overzoomed.json tests/muni/out/out.dir/direct.json join-test: tippecanoe tippecanoe-decode tile-join ./tippecanoe -q -f -z12 -o tests/join-population/tabblock_06001420.mbtiles -YALAND10:'Land area' -L'{"file": "tests/join-population/tabblock_06001420.json", "description": "population"}' diff --git a/README.md b/README.md index 6a1c85570..d10277c09 100644 --- a/README.md +++ b/README.md @@ -421,7 +421,7 @@ be reduced to the maximum that can be used with the specified _maxzoom_. ### Filtering features by attributes - * `-j` *filter* or `--feature-filter`=*filter*: Check features against a per-layer filter (as defined in the [Mapbox GL Style Specification](https://docs.mapbox.com/mapbox-gl-js/style-spec/#other-filter)) and only include those that match. Any features in layers that have no filter specified will be passed through. Filters for the layer `"*"` apply to all layers. The special variable `$zoom` refers to the current zoom level. + * `-j` *filter* or `--feature-filter`=*filter*: Check features against a per-layer filter (as defined in the [Mapbox GL Style Specification](https://docs.mapbox.com/mapbox-gl-js/style-spec/#other-filter) or in a Felt filter specification still to be finalized) and only include those that match. Any features in layers that have no filter specified will be passed through. Filters for the layer `"*"` apply to all layers. The special variable `$zoom` refers to the current zoom level. * `-J` *filter-file* or `--feature-filter-file`=*filter-file*: Like `-j`, but read the filter from a file. Example: to find the Natural Earth countries with low `scalerank` but high `LABELRANK`: @@ -459,6 +459,7 @@ the same layer, enclose them in an `all` expression so they will all be evaluate If you use `-Bg`, it will guess a zoom level that will keep at most 50,000 features in the densest tile. You can also specify a marker-width with `-Bg`*width* to allow fewer features in the densest tile to compensate for the larger marker, or `-Bf`*number* to allow at most *number* features in the densest tile. + * `--retain-points-multiplier=`_multiple_: Retain the specified multiple of points instead of just the number of points that would ordinarily be retained by the drop rate. These can be thinned out later with the `-m` option to `tippecanoe-overzoom`. The start of each cluster is marked in the feature sequence by the `tippecanoe:retain_points_multiplier_first` attribute. * `--drop-denser=`_percentage_: When dropping dots at zoom levels below the base zoom, give the specified _percentage_ preference to retaining points in sparse areas and dropping points in dense areas. * `--limit-base-zoom-to-maximum-zoom` or `-Pb`: Limit the guessed base zoom not to exceed the maxzoom, even if this would put more than the requested number of features in a base zoom tile. @@ -993,4 +994,6 @@ reads tile `inz/inx/iny` of `in.mvt.gz` and produces tile `outz/outx/outy` of `o * `-b` *buffer*: Set the tile buffer in the output tile (default 5) * `-d` *detail*: Set the detail of the output tile (default 12) * `-y` *attribute*: Retain the specified *attribute* in the output features. All attributes that are not named in a `-y` option will be removed. + * `-j` *filter*: Filter features using the same expression syntax as in tippecanoe. + * `-m`: If a tile was created with the `--retain-points-multiplier` option, thin the tile back down to its normal feature count during overzooming. The first feature from each cluster will be retained, unless `-j` is used to specify a filter, in which case the first matching filter from each cluster will be retained instead. diff --git a/clip.cpp b/clip.cpp index 512ab2fd5..eeae40a53 100644 --- a/clip.cpp +++ b/clip.cpp @@ -7,6 +7,7 @@ #include "errors.hpp" #include "compression.hpp" #include "mvt.hpp" +#include "evaluator.hpp" static std::vector> clip_poly1(std::vector> &geom, long long minx, long long miny, long long maxx, long long maxy, @@ -754,7 +755,8 @@ static std::vector> clip_poly1(std::vector const &keep, bool do_compress, - std::vector> *next_overzoomed_tiles) { + std::vector> *next_overzoomed_tiles, + bool demultiply, json_object *filter) { mvt_tile tile; try { @@ -768,12 +770,49 @@ std::string overzoom(std::string s, int oz, int ox, int oy, int nz, int nx, int exit(EXIT_PROTOBUF); } - return overzoom(tile, oz, ox, oy, nz, nx, ny, detail, buffer, keep, do_compress, next_overzoomed_tiles); + return overzoom(tile, oz, ox, oy, nz, nx, ny, detail, buffer, keep, do_compress, next_overzoomed_tiles, demultiply, filter); +} + +struct tile_feature { + drawvec geom; + int t; + bool has_id; + unsigned long long id; + std::vector tags; + mvt_layer const *layer; +}; + +void feature_out(tile_feature const &feature, mvt_layer &outlayer, std::set const &keep) { + // Add geometry to output feature + + mvt_feature outfeature; + outfeature.type = feature.t; + for (auto const &g : feature.geom) { + outfeature.geometry.emplace_back(g.op, g.x, g.y); + } + + // ID and attributes, if it didn't get clipped away + + if (outfeature.geometry.size() > 0) { + if (feature.has_id) { + outfeature.has_id = true; + outfeature.id = feature.id; + } + + for (size_t i = 0; i + 1 < feature.tags.size(); i += 2) { + if (keep.size() == 0 || keep.find(feature.layer->keys[feature.tags[i]]) != keep.end()) { + outlayer.tag(outfeature, feature.layer->keys[feature.tags[i]], feature.layer->values[feature.tags[i + 1]]); + } + } + + outlayer.features.push_back(outfeature); + } } std::string overzoom(mvt_tile tile, int oz, int ox, int oy, int nz, int nx, int ny, int detail, int buffer, std::set const &keep, bool do_compress, - std::vector> *next_overzoomed_tiles) { + std::vector> *next_overzoomed_tiles, + bool demultiply, json_object *filter) { mvt_tile outtile; for (auto const &layer : tile.layers) { @@ -788,8 +827,37 @@ std::string overzoom(mvt_tile tile, int oz, int ox, int oy, int nz, int nx, int outlayer.version = layer.version; outlayer.extent = 1LL << det; - for (auto const &feature : layer.features) { - mvt_feature outfeature; + std::vector pending_tile_features; + + for (auto feature : layer.features) { + bool flush_multiplier_cluster = false; + if (demultiply) { + for (size_t i = 0; i + 1 < feature.tags.size(); i += 2) { + if (layer.keys[feature.tags[i]] == "tippecanoe: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); + break; + } + } + } + } else { + flush_multiplier_cluster = true; + } + + if (flush_multiplier_cluster) { + if (pending_tile_features.size() > 0) { + feature_out(pending_tile_features[0], outlayer, keep); + pending_tile_features.clear(); + } + } + + std::set exclude_attributes; + if (!evaluate(feature, layer, filter, exclude_attributes, nz)) { + continue; + } + drawvec geom; int t = feature.type; @@ -862,29 +930,20 @@ std::string overzoom(mvt_tile tile, int oz, int ox, int oy, int nz, int nx, int geom = close_poly(geom); } - // Add geometry to output feature - - outfeature.type = t; - for (auto const &g : geom) { - outfeature.geometry.emplace_back(g.op, g.x, g.y); - } - - // ID and attributes, if it didn't get clipped away + tile_feature tf; + tf.geom = geom; + tf.t = t; + tf.has_id = feature.has_id; + tf.id = feature.id; + tf.tags = feature.tags; + tf.layer = &layer; - if (outfeature.geometry.size() > 0) { - if (feature.has_id) { - outfeature.has_id = true; - outfeature.id = feature.id; - } - - for (size_t i = 0; i + 1 < feature.tags.size(); i += 2) { - if (keep.size() == 0 || keep.find(layer.keys[feature.tags[i]]) != keep.end()) { - outlayer.tag(outfeature, layer.keys[feature.tags[i]], layer.values[feature.tags[i + 1]]); - } - } + pending_tile_features.push_back(tf); + } - outlayer.features.push_back(outfeature); - } + if (pending_tile_features.size() > 0) { + feature_out(pending_tile_features[0], outlayer, keep); + pending_tile_features.clear(); } if (outlayer.features.size() > 0) { @@ -905,7 +964,8 @@ std::string overzoom(mvt_tile tile, int oz, int ox, int oy, int nz, int nx, int for (size_t y = 0; y < 2; y++) { std::string child = overzoom(outtile, nz, nx, ny, nz + 1, nx * 2 + x, ny * 2 + y, - detail, buffer, keep, false, NULL); + detail, buffer, keep, false, NULL, + demultiply, filter); if (child.size() > 0) { next_overzoomed_tiles->emplace_back(nx * 2 + x, ny * 2 + y); } diff --git a/dirtiles.cpp b/dirtiles.cpp index d1dd84d76..e88bb300b 100644 --- a/dirtiles.cpp +++ b/dirtiles.cpp @@ -318,6 +318,9 @@ void dir_write_metadata(const char *outdir, const metadata &m) { if (m.strategies_json.size() > 0) { out(state, "strategies", m.strategies_json); } + if (m.decisions_json.size() > 0) { + out(state, "tippecanoe_decisions", m.decisions_json); + } out(state, "format", m.format); out(state, "generator", m.generator); out(state, "generator_options", m.generator_options); diff --git a/evaluator.cpp b/evaluator.cpp index b0f1c21ab..9633bfcea 100644 --- a/evaluator.cpp +++ b/evaluator.cpp @@ -5,6 +5,123 @@ #include "mvt.hpp" #include "evaluator.hpp" #include "errors.hpp" +#include "milo/dtoa_milo.h" + +static std::string mvt_value_to_string(mvt_value one, bool &fail) { + if (one.type == mvt_string) { + return one.string_value; + } else if (one.type == mvt_float) { + return milo::dtoa_milo(one.numeric_value.float_value); + } else if (one.type == mvt_double) { + return milo::dtoa_milo(one.numeric_value.double_value); + } else if (one.type == mvt_int) { + return std::to_string(one.numeric_value.int_value); + } else if (one.type == mvt_uint) { + return std::to_string(one.numeric_value.uint_value); + } else if (one.type == mvt_sint) { + return std::to_string(one.numeric_value.sint_value); + } else if (one.type == mvt_bool) { + return one.numeric_value.bool_value ? "true" : "false"; + } else if (one.type == mvt_null) { + fail = true; // null op string => null + return ""; + } else { + fprintf(stderr, "unhandled mvt_type %d\n", one.type); + exit(EXIT_IMPOSSIBLE); + } +} + +int compare_fsl(mvt_value one, json_object *two, bool &fail) { + // In FSL expressions, the attribute value is coerced to the type + // of the JSON literal value it is being compared to. + // + // If it cannot be converted, the comparison returns null + // (which is distinct from true and false but is falsy if + // it is the final output value). + + if (two->type == JSON_NULL) { + fail = true; // anything op null => null + return 0; + } + + if (two->type == JSON_NUMBER) { + double lhs; + + if (one.type == mvt_string) { + char *endptr = NULL; + const char *s = one.string_value.c_str(); + lhs = strtod(s, &endptr); + if (endptr == s) { + fail = true; // non-numeric-string op number => null + return 0; + } + } else if (one.type == mvt_float) { + lhs = one.numeric_value.float_value; + } else if (one.type == mvt_double) { + lhs = one.numeric_value.double_value; + } else if (one.type == mvt_int) { + lhs = one.numeric_value.int_value; + } else if (one.type == mvt_uint) { + lhs = one.numeric_value.uint_value; + } else if (one.type == mvt_sint) { + lhs = one.numeric_value.sint_value; + } else if (one.type == mvt_bool) { + lhs = one.numeric_value.bool_value; + } else if (one.type == mvt_null) { + fail = true; // null op number => null + return 0; + } else { + fprintf(stderr, "unhandled mvt_type %d\n", one.type); + exit(EXIT_IMPOSSIBLE); + } + + if (lhs < two->value.number.number) { + return -1; + } else if (lhs > two->value.number.number) { + return 1; + } else { + return 0; + } + } + + if (two->type == JSON_STRING) { + std::string lhs = mvt_value_to_string(one, fail); + + return strcmp(lhs.c_str(), two->value.string.string); + } + + if (two->type == JSON_TRUE || two->type == JSON_FALSE) { + bool lhs; + + if (one.type == mvt_string) { + lhs = one.string_value.size() > 0; + } else if (one.type == mvt_float) { + lhs = one.numeric_value.float_value != 0; + } else if (one.type == mvt_double) { + lhs = one.numeric_value.double_value != 0; + } else if (one.type == mvt_int) { + lhs = one.numeric_value.int_value != 0; + } else if (one.type == mvt_uint) { + lhs = one.numeric_value.uint_value != 0; + } else if (one.type == mvt_sint) { + lhs = one.numeric_value.sint_value != 0; + } else if (one.type == mvt_bool) { + lhs = one.numeric_value.bool_value; + } else if (one.type == mvt_null) { + fail = true; // null op bool => null + return 0; + } else { + fprintf(stderr, "unhandled mvt_type %d\n", one.type); + exit(EXIT_IMPOSSIBLE); + } + + bool rhs = two->type == JSON_TRUE; + return lhs - rhs; + } + + fprintf(stderr, "unhandled JSON type %d\n", two->type); + exit(EXIT_IMPOSSIBLE); +} int compare(mvt_value one, json_object *two, bool &fail) { if (one.type == mvt_string) { @@ -70,7 +187,36 @@ int compare(mvt_value one, json_object *two, bool &fail) { exit(EXIT_IMPOSSIBLE); } -bool eval(std::map const &feature, json_object *f, std::set &exclude_attributes) { +// 0: false +// 1: true +// -1: incomparable (sql null), treated as false in final output +static int eval(std::map const &feature, json_object *f, std::set &exclude_attributes) { + if (f != NULL) { + if (f->type == JSON_TRUE) { + return 1; + } else if (f->type == JSON_FALSE) { + return 0; + } else if (f->type == JSON_NULL) { + return -1; + } + + if (f->type == JSON_NUMBER) { + if (f->value.number.number == 0) { + return 0; + } else { + return 1; + } + } + + if (f->type == JSON_STRING) { + if (f->value.string.string[0] == '\0') { + return 0; + } else { + return 1; + } + } + } + if (f == NULL || f->type != JSON_ARRAY) { fprintf(stderr, "Filter is not an array: %s\n", json_stringify(f)); exit(EXIT_FILTER); @@ -81,6 +227,149 @@ bool eval(std::map const &feature, json_object *f, std:: exit(EXIT_FILTER); } + // FSL conjunctions + if (f->value.array.length == 3 && + f->value.array.array[1]->type == JSON_STRING && + (strcmp(f->value.array.array[1]->value.string.string, "or") == 0 || + strcmp(f->value.array.array[1]->value.string.string, "and") == 0)) { + int lhs; + + if (f->value.array.array[0]->type == JSON_STRING) { + // if LHS of a boolean conjunction is a string, it is an attribute reference + auto ff = feature.find(std::string(f->value.array.array[0]->value.string.string)); + if (ff != feature.end()) { + if (ff->second.type == mvt_bool) { + lhs = ff->second.numeric_value.bool_value; + } else { + lhs = -1; // not boolean: null + } + } else { + lhs = -1; // not found: null + } + } else { + lhs = eval(feature, f->value.array.array[0], exclude_attributes); + } + + int rhs = eval(feature, f->value.array.array[2], exclude_attributes); + if (lhs < 0 && rhs < 0) { + return -1; // null op null => null + } + if (strcmp(f->value.array.array[1]->value.string.string, "or") == 0) { + return (lhs > 0) || (rhs > 0); + } else { + return (lhs > 0) && (rhs > 0); + } + } + + // FSL comparators + if (f->value.array.length == 3 && + f->value.array.array[0]->type == JSON_STRING && + f->value.array.array[1]->type == JSON_STRING && + (strcmp(f->value.array.array[1]->value.string.string, "lt") == 0 || + strcmp(f->value.array.array[1]->value.string.string, "gt") == 0 || + strcmp(f->value.array.array[1]->value.string.string, "le") == 0 || + strcmp(f->value.array.array[1]->value.string.string, "ge") == 0 || + strcmp(f->value.array.array[1]->value.string.string, "eq") == 0 || + strcmp(f->value.array.array[1]->value.string.string, "ne") == 0 || + strcmp(f->value.array.array[1]->value.string.string, "cn") == 0 || + strcmp(f->value.array.array[1]->value.string.string, "nc") == 0 || + strcmp(f->value.array.array[1]->value.string.string, "in") == 0 || + strcmp(f->value.array.array[1]->value.string.string, "ni") == 0 || + strcmp(f->value.array.array[1]->value.string.string, "is") == 0 || + strcmp(f->value.array.array[1]->value.string.string, "isnt") == 0 || + false)) { + mvt_value lhs; + lhs.type = mvt_null; // attributes that aren't found are nulls + auto ff = feature.find(std::string(f->value.array.array[0]->value.string.string)); + if (ff != feature.end()) { + lhs = ff->second; + } + + if (f->value.array.array[2]->type == JSON_NULL && strcmp(f->value.array.array[1]->value.string.string, "is") == 0) { + return lhs.type == mvt_null; // null is null => true, anything is null => false + } + if (f->value.array.array[2]->type == JSON_NULL && strcmp(f->value.array.array[1]->value.string.string, "isnt") == 0) { + return lhs.type != mvt_null; // null isnt null => false, anything isnt null => true + } + + if (lhs.type == mvt_null) { + return -1; // null op anything => null + } + + bool fail = false; + + if (f->value.array.array[2]->type == JSON_STRING && + (strcmp(f->value.array.array[1]->value.string.string, "cn") == 0 || + strcmp(f->value.array.array[1]->value.string.string, "nc") == 0)) { + std::string s = mvt_value_to_string(lhs, fail); + if (fail) { + return -1; // null cn anything => false + } + + bool contains = strstr(s.c_str(), f->value.array.array[2]->value.string.string); + if (strcmp(f->value.array.array[1]->value.string.string, "cn") == 0) { + return contains; + } else { + return !contains; + } + } + + if (f->value.array.array[2]->type == JSON_ARRAY && + (strcmp(f->value.array.array[1]->value.string.string, "in") == 0 || + strcmp(f->value.array.array[1]->value.string.string, "ni") == 0)) { + std::string s = mvt_value_to_string(lhs, fail); + if (fail) { + return -1; // null in anything => false + } + + bool contains = false; + for (size_t i = 0; i < f->value.array.array[2]->value.array.length; i++) { + if (f->value.array.array[2]->value.array.array[i]->type != JSON_STRING) { + return -1; // anything in [not-a-string] => null + } + + if (s == f->value.array.array[2]->value.array.array[i]->value.string.string) { + contains = true; + break; + } + } + + if (strcmp(f->value.array.array[1]->value.string.string, "in") == 0) { + return contains; + } else { + return !contains; + } + } + + int cmp = compare_fsl(ff->second, f->value.array.array[2], fail); + if (fail) { + printf("cast fail\n"); + return -1; // null + } + + if (strcmp(f->value.array.array[1]->value.string.string, "eq") == 0) { + return cmp == 0; + } + if (strcmp(f->value.array.array[1]->value.string.string, "ne") == 0) { + return cmp != 0; + } + if (strcmp(f->value.array.array[1]->value.string.string, "gt") == 0) { + return cmp > 0; + } + if (strcmp(f->value.array.array[1]->value.string.string, "ge") == 0) { + return cmp >= 0; + } + if (strcmp(f->value.array.array[1]->value.string.string, "lt") == 0) { + return cmp < 0; + } + if (strcmp(f->value.array.array[1]->value.string.string, "le") == 0) { + return cmp <= 0; + } + + fprintf(stderr, "expression fsl comparison: can't happen %s\n", f->value.array.array[1]->value.string.string); + exit(EXIT_IMPOSSIBLE); + } + if (f->value.array.array[0]->type != JSON_STRING) { fprintf(stderr, "Filter operation is not a string: %s\n", json_stringify(f)); exit(EXIT_FILTER); @@ -192,17 +481,19 @@ bool eval(std::map const &feature, json_object *f, std:: } for (size_t i = 1; i < f->value.array.length; i++) { - bool out = eval(feature, f->value.array.array[i], exclude_attributes); - - if (strcmp(f->value.array.array[0]->value.string.string, "all") == 0) { - v = v && out; - if (!v) { - break; - } - } else { - v = v || out; - if (v) { - break; + int out = eval(feature, f->value.array.array[i], exclude_attributes); + + if (out >= 0) { // nulls are ignored in boolean and/or expressions + if (strcmp(f->value.array.array[0]->value.string.string, "all") == 0) { + v = v && out; + if (!v) { + break; + } + } else { + v = v || out; + if (v) { + break; + } } } } @@ -281,7 +572,7 @@ bool eval(std::map const &feature, json_object *f, std:: exit(EXIT_FILTER); } - bool ok = eval(feature, f->value.array.array[2], exclude_attributes); + bool ok = eval(feature, f->value.array.array[2], exclude_attributes) > 0; if (!ok) { exclude_attributes.insert(f->value.array.array[1]->value.string.string); } @@ -304,12 +595,12 @@ bool evaluate(std::map const &feature, std::string const f = json_hash_get(filter, layer.c_str()); if (ok && f != NULL) { - ok = eval(feature, f, exclude_attributes); + ok = eval(feature, f, exclude_attributes) > 0; } f = json_hash_get(filter, "*"); if (ok && f != NULL) { - ok = eval(feature, f, exclude_attributes); + ok = eval(feature, f, exclude_attributes) > 0; } return ok; @@ -346,3 +637,49 @@ json_object *parse_filter(const char *s) { json_end(jp); return filter; } + +bool evaluate(mvt_feature const &feat, mvt_layer const &layer, json_object *filter, std::set &exclude_attributes, int z) { + if (filter != NULL) { + std::map attributes; + + for (size_t t = 0; t + 1 < feat.tags.size(); t += 2) { + std::string key = layer.keys[feat.tags[t]]; + const mvt_value &val = layer.values[feat.tags[t + 1]]; + + attributes.insert(std::pair(key, val)); + } + + if (feat.has_id) { + mvt_value v; + v.type = mvt_uint; + v.numeric_value.uint_value = feat.id; + + attributes.insert(std::pair("$id", v)); + } + + mvt_value v; + v.type = mvt_string; + + if (feat.type == mvt_point) { + v.string_value = "Point"; + } else if (feat.type == mvt_linestring) { + v.string_value = "LineString"; + } else if (feat.type == mvt_polygon) { + v.string_value = "Polygon"; + } + + attributes.insert(std::pair("$type", v)); + + mvt_value v2; + v2.type = mvt_uint; + v2.numeric_value.uint_value = z; + + attributes.insert(std::pair("$zoom", v2)); + + if (!evaluate(attributes, layer.name, filter, exclude_attributes)) { + return false; + } + } + + return true; +} diff --git a/evaluator.hpp b/evaluator.hpp index c3116e757..d8cc9e8bc 100644 --- a/evaluator.hpp +++ b/evaluator.hpp @@ -11,4 +11,6 @@ bool evaluate(std::map const &feature, std::string const json_object *parse_filter(const char *s); json_object *read_filter(const char *fname); +bool evaluate(mvt_feature const &feat, mvt_layer const &layer, json_object *filter, std::set &exclude_attributes, int z); + #endif diff --git a/geometry.hpp b/geometry.hpp index 1cbaa8ef1..70c3c6bc8 100644 --- a/geometry.hpp +++ b/geometry.hpp @@ -8,6 +8,7 @@ #include #include #include +#include "jsonpull/jsonpull.h" #define VT_POINT 1 #define VT_LINE 2 @@ -100,10 +101,12 @@ double distance_from_line(long long point_x, long long point_y, long long segA_x std::string overzoom(mvt_tile tile, int oz, int ox, int oy, int nz, int nx, int ny, int detail, int buffer, std::set const &keep, bool do_compress, - std::vector> *next_overzoomed_tiles); + std::vector> *next_overzoomed_tiles, + bool demultiply, json_object *filter); std::string overzoom(std::string s, int oz, int ox, int oy, int nz, int nx, int ny, int detail, int buffer, std::set const &keep, bool do_compress, - std::vector> *next_overzoomed_tiles); + std::vector> *next_overzoomed_tiles, + bool demultiply, json_object *filter); #endif diff --git a/main.cpp b/main.cpp index cb6060a97..038495e0a 100644 --- a/main.cpp +++ b/main.cpp @@ -93,6 +93,7 @@ unsigned int drop_denser = 0; std::map set_attributes; unsigned long long preserve_point_density_threshold = 0; long long extend_zooms_max = 0; +int retain_points_multiplier = 1; std::vector order_by; bool order_reverse; @@ -303,7 +304,6 @@ int calc_feature_minzoom(struct index *ix, struct drop_state *ds, int maxzoom, d for (ssize_t i = maxzoom; i >= 0; i--) { ds[i].seq++; } - ssize_t chosen = maxzoom + 1; for (ssize_t i = maxzoom; i >= 0; i--) { if (ds[i].seq < 0) { feature_minzoom = i + 1; @@ -317,7 +317,6 @@ int calc_feature_minzoom(struct index *ix, struct drop_state *ds, int maxzoom, d ds[j].previndex = ix->ix; } - chosen = i + 1; break; } else { ds[i].seq -= ds[i].interval; @@ -330,7 +329,7 @@ int calc_feature_minzoom(struct index *ix, struct drop_state *ds, int maxzoom, d // we will go ahead and push it out. if (preserve_point_density_threshold > 0) { - for (ssize_t i = 0; i < chosen && i < maxzoom; i++) { + for (ssize_t i = 0; i < feature_minzoom && i < maxzoom; i++) { if (ix->ix - ds[i].previndex > ((1LL << (32 - i)) / preserve_point_density_threshold) * ((1LL << (32 - i)) / preserve_point_density_threshold)) { feature_minzoom = i; @@ -2825,7 +2824,7 @@ std::pair read_input(std::vector &sources, char *fname, i ai->second.maxzoom = maxzoom; } - metadata m = make_metadata(fname, minzoom, maxzoom, minlat, minlon, maxlat, maxlon, minlat2, minlon2, maxlat2, maxlon2, midlat, midlon, attribution, merged_lm, true, description, !prevent[P_TILE_STATS], attribute_descriptions, "tippecanoe", commandline, strategies); + metadata m = make_metadata(fname, minzoom, maxzoom, minlat, minlon, maxlat, maxlon, minlat2, minlon2, maxlat2, maxlon2, midlat, midlon, attribution, merged_lm, true, description, !prevent[P_TILE_STATS], attribute_descriptions, "tippecanoe", commandline, strategies, basezoom, droprate, retain_points_multiplier); if (outdb != NULL) { mbtiles_write_metadata(outdb, m, forcetable); } else { @@ -3150,6 +3149,7 @@ int main(int argc, char **argv) { {"Dropping a fixed fraction of features by zoom level", 0, 0, 0}, {"drop-rate", required_argument, 0, 'r'}, + {"retain-points-multiplier", required_argument, 0, '~'}, {"base-zoom", required_argument, 0, 'B'}, {"drop-denser", required_argument, 0, '~'}, {"limit-base-zoom-to-maximum-zoom", no_argument, &prevent[P_BASEZOOM_ABOVE_MAXZOOM], 1}, @@ -3370,6 +3370,8 @@ int main(int argc, char **argv) { preserve_point_density_threshold = atoll_require(optarg, "Preserve point density threshold"); } else if (strcmp(opt, "extend-zooms-if-still-dropping-maximum") == 0) { extend_zooms_max = atoll_require(optarg, "Maximum number by which to extend zooms"); + } else if (strcmp(opt, "retain-points-multiplier") == 0) { + retain_points_multiplier = atoll_require(optarg, "Multiply the fraction of points retained by zoom level"); } else { fprintf(stderr, "%s: Unrecognized option --%s\n", argv[0], opt); exit(EXIT_ARGS); diff --git a/main.hpp b/main.hpp index 84bcda347..25695e2f2 100644 --- a/main.hpp +++ b/main.hpp @@ -62,6 +62,7 @@ extern size_t limit_tile_feature_count; extern size_t limit_tile_feature_count_at_maxzoom; extern std::map set_attributes; extern long long extend_zooms_max; +extern int retain_points_multiplier; struct order_field { std::string name; diff --git a/man/tippecanoe.1 b/man/tippecanoe.1 index a1abaaf2c..7d9b5ae7f 100644 --- a/man/tippecanoe.1 +++ b/man/tippecanoe.1 @@ -526,7 +526,7 @@ The attributes and values may also be specified as JSON keys and values: \fB\fC\ .SS Filtering features by attributes .RS .IP \(bu 2 -\fB\fC\-j\fR \fIfilter\fP or \fB\fC\-\-feature\-filter\fR=\fIfilter\fP: Check features against a per\-layer filter (as defined in the Mapbox GL Style Specification \[la]https://docs.mapbox.com/mapbox-gl-js/style-spec/#other-filter\[ra]) and only include those that match. Any features in layers that have no filter specified will be passed through. Filters for the layer \fB\fC"*"\fR apply to all layers. The special variable \fB\fC$zoom\fR refers to the current zoom level. +\fB\fC\-j\fR \fIfilter\fP or \fB\fC\-\-feature\-filter\fR=\fIfilter\fP: Check features against a per\-layer filter (as defined in the Mapbox GL Style Specification \[la]https://docs.mapbox.com/mapbox-gl-js/style-spec/#other-filter\[ra] or in a Felt filter specification still to be finalized) and only include those that match. Any features in layers that have no filter specified will be passed through. Filters for the layer \fB\fC"*"\fR apply to all layers. The special variable \fB\fC$zoom\fR refers to the current zoom level. .IP \(bu 2 \fB\fC\-J\fR \fIfilter\-file\fP or \fB\fC\-\-feature\-filter\-file\fR=\fIfilter\-file\fP: Like \fB\fC\-j\fR, but read the filter from a file. .RE @@ -574,6 +574,8 @@ If you use \fB\fC\-Bg\fR, it will guess a zoom level that will keep at most 50,0 You can also specify a marker\-width with \fB\fC\-Bg\fR\fIwidth\fP to allow fewer features in the densest tile to compensate for the larger marker, or \fB\fC\-Bf\fR\fInumber\fP to allow at most \fInumber\fP features in the densest tile. .IP \(bu 2 +\fB\fC\-\-retain\-points\-multiplier=\fR\fImultiple\fP: Retain the specified multiple of points instead of just the number of points that would ordinarily be retained by the drop rate. These can be thinned out later with the \fB\fC\-m\fR option to \fB\fCtippecanoe\-overzoom\fR\&. The start of each cluster is marked in the feature sequence by the \fB\fCtippecanoe:retain_points_multiplier_first\fR attribute. +.IP \(bu 2 \fB\fC\-\-drop\-denser=\fR\fIpercentage\fP: When dropping dots at zoom levels below the base zoom, give the specified \fIpercentage\fP preference to retaining points in sparse areas and dropping points in dense areas. .IP \(bu 2 @@ -1260,4 +1262,8 @@ reads tile \fB\fCinz/inx/iny\fR of \fB\fCin.mvt.gz\fR and produces tile \fB\fCou \fB\fC\-d\fR \fIdetail\fP: Set the detail of the output tile (default 12) .IP \(bu 2 \fB\fC\-y\fR \fIattribute\fP: Retain the specified \fIattribute\fP in the output features. All attributes that are not named in a \fB\fC\-y\fR option will be removed. +.IP \(bu 2 +\fB\fC\-j\fR \fIfilter\fP: Filter features using the same expression syntax as in tippecanoe. +.IP \(bu 2 +\fB\fC\-m\fR: If a tile was created with the \fB\fC\-\-retain\-points\-multiplier\fR option, thin the tile back down to its normal feature count during overzooming. The first feature from each cluster will be retained, unless \fB\fC\-j\fR is used to specify a filter, in which case the first matching filter from each cluster will be retained instead. .RE diff --git a/mbtiles.cpp b/mbtiles.cpp index 3098eecc2..5af9168c6 100644 --- a/mbtiles.cpp +++ b/mbtiles.cpp @@ -7,6 +7,8 @@ #include #include #include +#include +#include #include #include #include @@ -601,6 +603,17 @@ void mbtiles_write_metadata(sqlite3 *db, const metadata &m, bool forcetable) { sqlite3_free(sql); } + if (m.decisions_json.size() > 0) { + sql = sqlite3_mprintf("INSERT INTO metadata (name, value) VALUES ('tippecanoe_decisions', %Q);", m.decisions_json.c_str()); + if (sqlite3_exec(db, sql, NULL, NULL, &err) != SQLITE_OK) { + fprintf(stderr, "set decisions: %s\n", err); + if (!forcetable) { + exit(EXIT_SQLITE); + } + } + sqlite3_free(sql); + } + if (m.vector_layers_json.size() > 0 || m.tilestats_json.size() > 0) { std::string json; json_writer state(&json); @@ -642,7 +655,7 @@ void mbtiles_write_metadata(sqlite3 *db, const metadata &m, bool forcetable) { } } -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) { +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; m.name = fname; @@ -677,6 +690,17 @@ metadata make_metadata(const char *fname, int minzoom, int maxzoom, double minla m.strategies_json = stringify_strategies(strategies); + if (isinf(droprate)) { + droprate = LLONG_MAX; + } + if (basezoom != maxzoom || droprate != 2.5 || retain_points_multiplier != 1) { + m.decisions_json = std::string("{") + + "\"basezoom\":" + milo::dtoa_milo(basezoom) + "," + + "\"droprate\":" + milo::dtoa_milo(droprate) + "," + + "\"retain_points_multiplier\":" + std::to_string(retain_points_multiplier) + + std::string("}"); + } + if (vector) { { json_writer state(&m.vector_layers_json); diff --git a/mbtiles.hpp b/mbtiles.hpp index 58499da96..956b0550e 100644 --- a/mbtiles.hpp +++ b/mbtiles.hpp @@ -66,6 +66,7 @@ struct metadata { std::string vector_layers_json; std::string tilestats_json; + std::string decisions_json; }; #include "tile.hpp" @@ -75,7 +76,7 @@ sqlite3 *mbtiles_open(char *dbname, char **argv, int forcetable); void mbtiles_write_tile(sqlite3 *outdb, int z, int tx, int ty, const char *data, int size); void mbtiles_erase_zoom(sqlite3 *outdb, int z); -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); +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); void mbtiles_write_metadata(sqlite3 *db, const metadata &m, bool forcetable); void mbtiles_close(sqlite3 *outdb, const char *pgm); diff --git a/overzoom.cpp b/overzoom.cpp index 1a630413d..c12cdefce 100644 --- a/overzoom.cpp +++ b/overzoom.cpp @@ -6,12 +6,15 @@ #include "errors.hpp" #include "mvt.hpp" #include "geometry.hpp" +#include "evaluator.hpp" extern char *optarg; extern int optind; int detail = 12; // tippecanoe-style: mvt extent == 1 << detail int buffer = 5; // tippecanoe-style: mvt buffer == extent * buffer / 256; +bool demultiply = false; +std::string filter; std::set keep; @@ -25,7 +28,7 @@ int main(int argc, char **argv) { int i; const char *outfile = NULL; - while ((i = getopt(argc, argv, "y:o:d:b:")) != -1) { + while ((i = getopt(argc, argv, "y:d:b:o:mj:")) != -1) { switch (i) { case 'y': keep.insert(optarg); @@ -43,7 +46,16 @@ int main(int argc, char **argv) { buffer = atoi(optarg); break; + case 'm': + demultiply = true; + break; + + case 'j': + filter = optarg; + break; + default: + fprintf(stderr, "Unrecognized flag -%c\n", i); usage(argv); } } @@ -91,7 +103,12 @@ int main(int argc, char **argv) { exit(EXIT_FAILURE); } - std::string out = overzoom(tile, oz, ox, oy, nz, nx, ny, detail, buffer, keep, true, NULL); + json_object *json_filter = NULL; + if (filter.size() > 0) { + json_filter = parse_filter(filter.c_str()); + } + + std::string out = overzoom(tile, oz, ox, oy, nz, nx, ny, detail, buffer, keep, true, NULL, demultiply, json_filter); fwrite(out.c_str(), sizeof(char), out.size(), f); fclose(f); diff --git a/pmtiles_file.cpp b/pmtiles_file.cpp index c1226d07b..0326c92ac 100644 --- a/pmtiles_file.cpp +++ b/pmtiles_file.cpp @@ -103,6 +103,13 @@ std::string metadata_to_pmtiles_json(metadata m) { state.json_write_string("strategies"); state.json_write_json(m.strategies_json); } + + if (m.decisions_json.size() > 0) { + state.json_comma_newline(); + state.json_write_string("tippecanoe_decisions"); + state.json_write_json(m.decisions_json); + } + out(state, "generator", m.generator); out(state, "generator_options", m.generator_options); @@ -428,6 +435,12 @@ sqlite3 *pmtilesmeta2tmp(const char *fname, const char *pmtiles_map) { fprintf(stderr, "set %s in metadata: %s\n", key, err); } sqlite3_free(sql); + } else if (strcmp(key, "tippecanoe_decisions") == 0 && o->value.object.values[i]->type == JSON_HASH) { + sql = sqlite3_mprintf("INSERT INTO metadata (name, value) VALUES ('tippecanoe_decisions', %Q);", json_stringify(o->value.object.values[i])); + if (sqlite3_exec(db, sql, NULL, NULL, &err) != SQLITE_OK) { + fprintf(stderr, "set %s in metadata: %s\n", key, err); + } + sqlite3_free(sql); } else if (o->value.object.keys[i]->type != JSON_STRING || o->value.object.values[i]->type != JSON_STRING) { fprintf(stderr, "%s\n", key); fprintf(stderr, "%s: non-string in metadata\n", fname); diff --git a/tests/accumulate/out/-z3_-Ethesum%3asum_-Etheproduct%3aproduct_-Ethemax%3amax_-Ethemin%3amin_-Ethemean%3amean_-Etheconcat%3aconcat_-Ethecomma%3acomma_-r1_-K100.json b/tests/accumulate/out/-z3_-Ethesum%3asum_-Etheproduct%3aproduct_-Ethemax%3amax_-Ethemin%3amin_-Ethemean%3amean_-Etheconcat%3aconcat_-Ethecomma%3acomma_-r1_-K100.json index 93bc43b63..07d81c3ad 100644 --- a/tests/accumulate/out/-z3_-Ethesum%3asum_-Etheproduct%3aproduct_-Ethemax%3amax_-Ethemin%3amin_-Ethemean%3amean_-Etheconcat%3aconcat_-Ethecomma%3acomma_-r1_-K100.json +++ b/tests/accumulate/out/-z3_-Ethesum%3asum_-Etheproduct%3aproduct_-Ethemax%3amax_-Ethemin%3amin_-Ethemean%3amean_-Etheconcat%3aconcat_-Ethecomma%3acomma_-r1_-K100.json @@ -10,6 +10,7 @@ "minzoom": "0", "name": "tests/accumulate/out/-z3_-Ethesum%3asum_-Etheproduct%3aproduct_-Ethemax%3amax_-Ethemin%3amin_-Ethemean%3amean_-Etheconcat%3aconcat_-Ethecomma%3acomma_-r1_-K100.json.check.mbtiles", "strategies": "[{\"coalesced_as_needed\":78},{\"coalesced_as_needed\":65},{\"coalesced_as_needed\":43},{\"coalesced_as_needed\":17}]", +"tippecanoe_decisions": "{\"basezoom\":3,\"droprate\":1,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" }, "features": [ diff --git a/tests/layer-json/out.mbtiles.json b/tests/layer-json/out.mbtiles.json index ebaecc0d3..d08c648cd 100644 --- a/tests/layer-json/out.mbtiles.json +++ b/tests/layer-json/out.mbtiles.json @@ -8,6 +8,7 @@ "maxzoom": "0", "minzoom": "0", "name": "tests/layer-json/out.mbtiles", +"tippecanoe_decisions": "{\"basezoom\":0,\"droprate\":1,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" }, "features": [ diff --git a/tests/muni/out/-Z11_-z13_-B15.json b/tests/muni/out/-Z11_-z13_-B15.json index dcb217a4c..a09f30cda 100644 --- a/tests/muni/out/-Z11_-z13_-B15.json +++ b/tests/muni/out/-Z11_-z13_-B15.json @@ -10,6 +10,7 @@ "minzoom": "11", "name": "tests/muni/out/-Z11_-z13_-B15.json.check.mbtiles", "strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":4727},{\"dropped_by_rate\":4643},{\"dropped_by_rate\":4210}]", +"tippecanoe_decisions": "{\"basezoom\":15,\"droprate\":2.5,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" }, "features": [ diff --git a/tests/muni/out/-Z11_-z13_-Bf2000.json b/tests/muni/out/-Z11_-z13_-Bf2000.json index e2523dd03..84575e4aa 100644 --- a/tests/muni/out/-Z11_-z13_-Bf2000.json +++ b/tests/muni/out/-Z11_-z13_-Bf2000.json @@ -10,6 +10,7 @@ "minzoom": "11", "name": "tests/muni/out/-Z11_-z13_-Bf2000.json.check.mbtiles", "strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":2910},{},{}]", +"tippecanoe_decisions": "{\"basezoom\":12,\"droprate\":2.5,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" }, "features": [ diff --git a/tests/muni/out/-Z11_-z13_-rf2000.json b/tests/muni/out/-Z11_-z13_-rf2000.json index ee976e9ee..917991544 100644 --- a/tests/muni/out/-Z11_-z13_-rf2000.json +++ b/tests/muni/out/-Z11_-z13_-rf2000.json @@ -10,6 +10,7 @@ "minzoom": "11", "name": "tests/muni/out/-Z11_-z13_-rf2000.json.check.mbtiles", "strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":2542},{\"dropped_by_rate\":1547},{}]", +"tippecanoe_decisions": "{\"basezoom\":13,\"droprate\":1.4510341140028376,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" }, "features": [ diff --git a/tests/muni/out/-Z11_-z13_-rf2000_-Bg.json b/tests/muni/out/-Z11_-z13_-rf2000_-Bg.json index 9ba9d2a59..b41d06073 100644 --- a/tests/muni/out/-Z11_-z13_-rf2000_-Bg.json +++ b/tests/muni/out/-Z11_-z13_-rf2000_-Bg.json @@ -10,6 +10,7 @@ "minzoom": "11", "name": "tests/muni/out/-Z11_-z13_-rf2000_-Bg.json.check.mbtiles", "strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":2546},{},{}]", +"tippecanoe_decisions": "{\"basezoom\":12,\"droprate\":2.1055,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" }, "features": [ diff --git a/tests/muni/out/-Z11_-z13_-rf2000_-g2.json b/tests/muni/out/-Z11_-z13_-rf2000_-g2.json index 3ac0d264e..1edb07c8b 100644 --- a/tests/muni/out/-Z11_-z13_-rf2000_-g2.json +++ b/tests/muni/out/-Z11_-z13_-rf2000_-g2.json @@ -10,6 +10,7 @@ "minzoom": "11", "name": "tests/muni/out/-Z11_-z13_-rf2000_-g2.json.check.mbtiles", "strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":1349,\"dropped_by_gamma\":963},{\"dropped_by_rate\":747,\"dropped_by_gamma\":752},{\"dropped_by_gamma\":514}]", +"tippecanoe_decisions": "{\"basezoom\":13,\"droprate\":1.176222768016331,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" }, "features": [ diff --git a/tests/muni/out/-r1_-K20.json b/tests/muni/out/-r1_-K20.json index 02c1da51f..d3690c2e1 100644 --- a/tests/muni/out/-r1_-K20.json +++ b/tests/muni/out/-r1_-K20.json @@ -10,6 +10,7 @@ "minzoom": "0", "name": "tests/muni/out/-r1_-K20.json.check.mbtiles", "strategies": "[{\"coalesced_as_needed\":4608},{\"coalesced_as_needed\":4608},{\"coalesced_as_needed\":4608},{\"coalesced_as_needed\":4608},{\"coalesced_as_needed\":4608},{\"coalesced_as_needed\":4607},{\"coalesced_as_needed\":4607},{\"coalesced_as_needed\":4606},{\"coalesced_as_needed\":6005},{\"coalesced_as_needed\":5393},{\"coalesced_as_needed\":5012},{\"coalesced_as_needed\":4727},{\"coalesced_as_needed\":4577},{\"coalesced_as_needed\":4003},{\"coalesced_as_needed\":3005}]", +"tippecanoe_decisions": "{\"basezoom\":14,\"droprate\":1,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" }, "features": [ diff --git a/tests/muni/out/-z11_--retain-points-multiplier_2_--extend-zooms-if-still-dropping.json b/tests/muni/out/-z11_--retain-points-multiplier_2_--extend-zooms-if-still-dropping.json new file mode 100644 index 000000000..5a010c509 --- /dev/null +++ b/tests/muni/out/-z11_--retain-points-multiplier_2_--extend-zooms-if-still-dropping.json @@ -0,0 +1,23842 @@ +{ "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.431641,37.788049,11", +"description": "tests/muni/out/-z11_--retain-points-multiplier_2_--extend-zooms-if-still-dropping.json.check.mbtiles", +"format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/muni/out/-z11_--retain-points-multiplier_2_--extend-zooms-if-still-dropping.json.check.mbtiles -z11 --retain-points-multiplier 2 --extend-zooms-if-still-dropping tests/muni/muni.json", +"json": "{\"vector_layers\":[{\"id\":\"muni\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":11,\"fields\":{\"name\":\"String\"}},{\"id\":\"subway\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":11,\"fields\":{\"name\":\"String\"}}],\"tilestats\":{\"layerCount\":2,\"layers\":[{\"layer\":\"muni\",\"count\":4592,\"geometry\":\"Point\",\"attributeCount\":1,\"attributes\":[{\"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\"]}]},{\"layer\":\"subway\",\"count\":19,\"geometry\":\"Point\",\"attributeCount\":1,\"attributes\":[{\"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\"]}]}]}}", +"maxzoom": "11", +"minzoom": "0", +"name": "tests/muni/out/-z11_--retain-points-multiplier_2_--extend-zooms-if-still-dropping.json.check.mbtiles", +"strategies": "[{\"dropped_by_rate\":4607},{\"dropped_by_rate\":4607},{\"dropped_by_rate\":4605},{\"dropped_by_rate\":4601},{\"dropped_by_rate\":4591},{\"dropped_by_rate\":4569},{\"dropped_by_rate\":4513},{\"dropped_by_rate\":4371},{\"dropped_by_rate\":5237},{\"dropped_by_rate\":3669},{\"dropped_by_rate\":1030},{}]", +"tippecanoe_decisions": "{\"basezoom\":11,\"droprate\":2.5,\"retain_points_multiplier\":2}", +"type": "overlay", +"version": "2" +}, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "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 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "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 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.822802 ] } } +, +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.822802 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.753344 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "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 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.840157 ] } } +, +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.840157 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.770715 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "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 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.831480 ] } } +, +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.831480 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.762030 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "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 }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.831480 ] } } +, +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.831480 ] } } +, +{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.762030 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.818463 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.818463 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 12 }, "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 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.831480 ] } } +, +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.831480 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.762030 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.820633 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.820633 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 6, "x": 10, "y": 24 }, "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 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832565 ] } } +, +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.831480 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.726194 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.808699 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay St & Midway St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.824972 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.823887 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.706640 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.717504 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.763116 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 6, "x": 29, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.819548 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.819548 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 7, "x": 20, "y": 49 }, "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 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832565 ] } } +, +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.832022 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.804901 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.727823 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.727823 ] } } +, +{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.726194 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "539 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.759316 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.745743 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.745743 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.750629 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.750629 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.808156 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay St & Midway St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.805986 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.804901 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Front & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St." }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.824972 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369156, 37.823887 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769086 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769086 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.756058 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.754973 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.747372 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.732711 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.745743 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.726737 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.732711 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.707183 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707183 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.707183 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710443 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710443 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.710443 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.712072 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 7, "x": 59, "y": 49 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +] } +] } +, +{ "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 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way" }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738413 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.722121 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724836 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "name": "Randall St & Whitney St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739499 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.736784 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727552 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.726737 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St" }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732711 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.376022, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.707183 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.718319 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707455 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.707455 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Allison St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.713430 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710443 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708541 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712072 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709899 ] } } +] } +] } +, +{ "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 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832294 ] } } +, +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.536354, 37.831751 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502022, 37.836361 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.833921 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799747 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800832 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800832 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.799476 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.799205 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.800290 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798662 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.800290 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.799205 ] } } +, +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.804901 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797306 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796492 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788353 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508202, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St" }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741671 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741671 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.744114 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.744114 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way" }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782383 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782383 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "name": "ARGUELLO BLVD & EUCLID AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.774243 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.770986 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.759316 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.782383 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.773700 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769358 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.767458 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766372 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.759044 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "539 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766372 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766915 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.767458 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.754158 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.759316 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.748729 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741671 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.750901 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.745743 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.745743 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD" }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736784 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School" }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.750901 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.750629 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.746557 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.751444 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741671 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.722121 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724836 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.806258 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.807885 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.800290 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.804901 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave&North Point St SE-NS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804901 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800290 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794864 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.794322 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.790523 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805173 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797306 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799476 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.802731 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.802731 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795949 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.791608 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808156 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay St & Midway St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.805986 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.802731 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.804901 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.788353 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.795949 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.798933 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.799476 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Front & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.791608 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789709 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789709 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St." }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.788895 ] } } +, +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828497 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828226 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.825243 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.823616 ] } } +, +{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240" }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "785 Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786182 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.781298 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.782926 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp" }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769358 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.766372 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.762844 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769086 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.769358 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755787 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.756058 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781298 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769901 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759044 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.759044 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.757144 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.757144 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755787 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.754973 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "name": "Randall St & Whitney St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739499 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744386 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.751444 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.736784 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727552 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.726737 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St" }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385292, 37.740585 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732711 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.376022, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.707183 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.718319 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707455 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.707455 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Allison St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.713430 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710443 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708541 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712072 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709899 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 41, "y": 99 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 41, "y": 98 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Avenue M & 13th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.829311 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 10th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368126, 37.827413 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.825243 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.823616 ] } } +, +{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240" }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 119, "y": 98 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 81, "y": 198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.728231 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721985 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721713 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727823 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727688 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.721985 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level" }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723343 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.721985 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.723343 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724701 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724701 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.724701 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.727416 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.724972 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.727688 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726194 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726601 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723343 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.726737 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729317 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727823 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725244 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724157 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St" }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.722528 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.368641, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714924 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.717640 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.715060 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.714652 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710850 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St&Alemany St" }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.707047 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710850 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.710307 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.705961 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707319 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.707455 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Allison St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708677 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Acton St" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716146 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.713973 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712887 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718319 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713702 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712072 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712751 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710307 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.708677 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.708134 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707047 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.712615 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.714924 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.709492 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.716961 ] } } +, +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709764 ] } } +] } +] } +, +{ "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 }, "geometry": { "type": "Point", "coordinates": [ -122.538586, 37.832429 ] } } +, +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.536182, 37.831751 ] } } +, +{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.527599, 37.829040 ] } } +, +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD" }, "geometry": { "type": "Point", "coordinates": [ -122.530346, 37.824972 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831345 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Light House" }, "geometry": { "type": "Point", "coordinates": [ -122.529659, 37.821853 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502193, 37.836496 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.833921 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832836 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.829582 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.792287 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480564, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792287 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806122 ] } } +, +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806936 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799883 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.798527 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.803952 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Transit Center" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.802324 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797984 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.800697 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800697 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798120 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.799340 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.799205 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803681 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.800290 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798527 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.795814 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.795542 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.791202 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.800426 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.799340 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.804901 ] } } +, +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805173 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799747 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799883 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796628 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795814 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794864 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788488 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.790116 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509747, 37.773700 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503910, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771529 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.771936 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.508373, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508202, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.758637 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.781705 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779534 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779534 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.781705 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.775871 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St" }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489834, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.784147 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.776278 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477989, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.764337 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758909 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.755108 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "LINC. WAY & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757823 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.760130 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.754023 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754158 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.749136 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745607 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.745472 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499447, 37.747643 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.741671 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498245, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735562 ] } } +, +{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.751851 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.747643 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.747779 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.744250 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743978 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.742349 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.742214 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738413 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.750358 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750222 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.746422 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.733933 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733661 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.730403 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733933 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way" }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734204 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729588 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio & California Street", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.782926 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773021 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St" }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "name": "ARGUELLO BLVD & EUCLID AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.781298 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773564 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774650 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.770850 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763794 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.762166 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.759316 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.759180 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.757008 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754158 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.762166 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764337 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.764337 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763658 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758637 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756737 ] } } +, +{ "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "117 Warren Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.784147 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.786182 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.787674 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.773021 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777635 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.773836 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.774243 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.774243 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.779534 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783469 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.786182 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.781298 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779263 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.774514 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.771258 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.771258 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.771665 ] } } +, +{ "type": "Feature", "properties": { "name": "Shrader St & Haight St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.769358 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.768272 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.768951 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.767051 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.764337 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "414 Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758909 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "320 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Danvers St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "539 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.757551 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "795 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.754158 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766508 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762437 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.769222 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.767458 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762437 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Noe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.754023 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.754023 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.754158 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.759451 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Collingwood St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.750494 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.748729 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.746965 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749136 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.749136 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473354, 37.743164 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743164 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.743435 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Arrive" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.750901 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751444 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751580 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747779 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.747779 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.745743 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.745743 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.739363 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.744114 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.743978 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD" }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736648 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731218 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.728231 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.732575 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721985 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721713 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School" }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.745879 ] } } +, +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750358 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750901 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "120 Portola Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741671 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736648 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.751037 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751037 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749544 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.751444 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.749544 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744657 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way" }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.738549 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734204 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727823 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727688 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.733933 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.721985 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level" }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733390 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St" }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723343 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.721985 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.723343 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724701 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806393 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.807071 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805851 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805851 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806122 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.808021 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.808021 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.807885 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.805715 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.806936 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.801646 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.800426 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800832 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.798120 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.804901 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave&North Point St SE-NS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804766 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.802460 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.802324 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.803681 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.800426 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800290 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.798798 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798798 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.790523 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.790388 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794728 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.790388 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.790388 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790523 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805308 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.805308 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799205 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799476 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804901 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804359 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.802731 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.801239 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.799883 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800154 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800426 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800426 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792829 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795949 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.794322 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796492 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.795271 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.791608 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808292 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay St & Midway St" }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.806122 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.806665 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802189 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.802731 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.800426 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.799340 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.797034 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.797306 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805037 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.803952 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801239 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.796899 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.794322 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.792829 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792287 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.790116 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.788353 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.788353 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.794864 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & SANSOME ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793101 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.789031 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792287 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Battery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "name": "BUSH ST & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 2nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "2ND ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.798933 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.799612 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "Drumm St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793915 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.795000 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Front & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Fremont St" }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.790116 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.791473 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790795 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St." }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.788895 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790795 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.790523 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789709 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828362 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828362 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St. & Avenue D", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.823480 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue E" }, "geometry": { "type": "Point", "coordinates": [ -122.371387, 37.824565 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.825243 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368984, 37.823616 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822396 ] } } +, +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla St & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813174 ] } } +, +{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.811954 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240" }, "geometry": { "type": "Point", "coordinates": [ -122.364521, 37.811818 ] } } +, +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810326 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.781705 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.787674 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775871 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.774243 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.773700 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "785 Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "name": "Fell St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773836 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.773021 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.773021 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786182 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782926 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.781162 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783333 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.786860 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.781705 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.782383 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777635 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.774243 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.778449 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771936 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.770850 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767865 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767729 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.768815 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.762844 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.759723 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754837 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754566 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768408 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768408 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness &16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.769086 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.769358 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.762166 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755787 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755787 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20St" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.755923 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.787674 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781162 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.781162 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787674 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.787674 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Minna St" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.771393 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.774650 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.784147 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Perry St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.783333 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776278 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.776278 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768408 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.769901 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759044 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.759044 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755787 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755923 ] } } +, +{ "type": "Feature", "properties": { "name": "Sf General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755244 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "name": "176 Rhode Island St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.756194 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.754566 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.757144 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766644 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.762437 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.770579 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & 4th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.766915 ] } } +, +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "name": "1730 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.767865 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.763387 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760808 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.757823 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.757959 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.755651 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755108 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751580 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751851 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751851 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751851 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.742214 ] } } +, +{ "type": "Feature", "properties": { "name": "46 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.736376 ] } } +, +{ "type": "Feature", "properties": { "name": "Randall St & Whitney St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.739635 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739635 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739363 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.737463 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.752122 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.749544 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St." }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744250 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.739363 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.739092 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744386 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744250 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Still St & Lyell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733390 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733390 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735562 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724701 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.724701 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "name": "989 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732575 ] } } +, +{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.732575 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.735833 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.724972 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.749544 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.751444 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.752122 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750901 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.741264 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738413 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.739092 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.739499 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.749815 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.749951 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.736376 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736784 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736648 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.739363 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734204 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.733118 ] } } +, +{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735290 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.727688 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726194 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726601 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723343 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.726737 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731761 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.732847 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729317 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727823 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725244 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724157 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St" }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.722528 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.755651 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740585 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743707 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.741128 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386494, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732575 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St" }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386494, 37.729588 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.382202, 37.733390 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379971, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379627, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732711 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.381687, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375851, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.373791, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.368641, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714924 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.717640 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.715060 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.714652 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710850 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St&Alemany St" }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710850 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.710307 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Allison St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708677 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Acton St" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716146 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.713973 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712887 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718319 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713702 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712072 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712751 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710307 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.708677 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.708134 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.712615 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.714924 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.709492 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.716961 ] } } +, +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709764 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784147 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 238, "y": 197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 163, "y": 396 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721781 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465200, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463484, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.721917 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721781 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723546 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723003 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.451811, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721917 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.721985 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723003 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.723003 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level" }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720559 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723275 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723546 ] } } +, +{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.722053 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.723343 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.722528 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.721374 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719337 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719337 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723954 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.723546 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St" }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721510 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721510 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.722460 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722460 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.722053 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714856 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714584 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711189 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714584 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.717708 ] } } +, +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716757 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709288 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484941, 37.709152 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.717436 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717300 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714652 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713770 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714041 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714041 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.713091 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.713023 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710918 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714449 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469664, 37.714313 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714313 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.710375 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467260, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St&Alemany St" }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711597 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711393 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708745 ] } } +, +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468634, 37.707047 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.462626, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462282, 37.710918 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "274 Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.461596, 37.711461 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710103 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717708 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714856 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.711461 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711733 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } +, +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.710307 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.705961 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.706165 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.706640 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.706844 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707387 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.707387 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718251 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.713973 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714041 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448378, 37.710510 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710239 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714720 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Allison St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714449 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.711461 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711733 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.712819 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.708677 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Acton St" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708881 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716146 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.715671 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.715739 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Seville St" }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.710239 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714449 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.717640 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715128 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713498 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714041 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709967 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710918 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712955 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712819 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.712140 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.709492 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708881 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718115 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.711733 ] } } +, +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711868 ] } } +, +{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.711054 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.718319 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.713702 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709288 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.709017 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.708677 ] } } +, +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712955 ] } } +, +{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.712819 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711868 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711733 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710646 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713498 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712004 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415934, 37.712004 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.711597 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714449 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.712751 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.711054 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.712751 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.712276 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710510 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.710375 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.708473 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.708202 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.708609 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708338 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.707115 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.706912 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.708134 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707115 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706300 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709288 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708270 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717843 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.717300 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715331 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712615 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.709967 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.711461 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.711461 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711325 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713770 ] } } +, +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.712547 ] } } +, +{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.711868 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.714652 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712140 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712276 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712276 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712276 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712276 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.710646 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.712887 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.712004 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711597 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.711597 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.709492 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711189 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710850 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.718251 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.712819 ] } } +, +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium" }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.712140 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 163, "y": 395 }, "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 }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832361 ] } } +, +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831751 ] } } +, +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.532406, 37.831819 ] } } +, +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831887 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.527256, 37.832565 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527170, 37.832497 ] } } +, +{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.527685, 37.829040 ] } } +, +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD" }, "geometry": { "type": "Point", "coordinates": [ -122.530260, 37.825040 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.524424, 37.830463 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.524424, 37.830395 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.523222, 37.831345 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Light House" }, "geometry": { "type": "Point", "coordinates": [ -122.529659, 37.821853 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.514982, 37.831819 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502451, 37.836090 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502108, 37.836429 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.833853 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.833582 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.833582 ] } } +, +{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835886 ] } } +, +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.833175 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832836 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.829514 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.829446 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.806665 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803749 ] } } +, +{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.792219 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788488 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792287 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480993, 37.792083 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.807546 ] } } +, +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.806597 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807478 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806054 ] } } +, +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.806936 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.803477 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.803613 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.801036 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799815 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803070 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.802935 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460394, 37.798527 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.460222, 37.798459 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.797916 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.803884 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.801646 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801578 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.803884 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.454557, 37.803681 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.803749 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Transit Center" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.802324 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801578 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.801443 ] } } +, +{ "type": "Feature", "properties": { "name": "220 Halleck St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801714 ] } } +, +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters" }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.797916 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797984 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.797713 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.800765 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.800697 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455072, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798187 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.799137 ] } } +, +{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799137 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451811, 37.799408 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.799205 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.798052 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804359 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.803613 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.803409 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803749 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803613 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.803681 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.802460 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.798527 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.797170 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.800629 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.799815 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard & Richardson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.798662 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442713, 37.798866 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.796695 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.795610 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.795881 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790727 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788963 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.791202 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.803749 ] } } +, +{ "type": "Feature", "properties": { "name": "Scott St & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.803070 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800290 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.800426 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.799273 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.800697 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & STEINER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796899 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Steiner St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796899 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804427 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802799 ] } } +, +{ "type": "Feature", "properties": { "name": "BATTERY St & GREENWICH St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.802392 ] } } +, +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.804901 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803409 ] } } +, +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.805308 ] } } +, +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805105 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.801172 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.801307 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.800765 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799679 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799883 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.799612 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.800832 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.797374 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.797102 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.796967 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442026, 37.796288 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796560 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441339, 37.791541 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788488 ] } } +, +{ "type": "Feature", "properties": { "name": "Green St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.796017 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.795881 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794864 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.794932 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794118 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.792219 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792355 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.792355 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.791473 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788488 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Steiner St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788760 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.789913 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.788963 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.788760 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790116 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779873 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.512064, 37.779059 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.510347, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.510004, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773632 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.771665 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.780009 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.780009 ] } } +, +{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504168, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.779738 ] } } +, +{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504168, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779534 ] } } +, +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499704, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502966, 37.781095 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779466 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775260 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503653, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.507772, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773564 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771461 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503653, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503309, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775667 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.779263 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771868 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.772004 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767865 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510433, 37.767390 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.508974, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.506227, 37.764065 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.764065 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762369 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508116, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758637 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.756805 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754769 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502623, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499189, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496443, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.781637 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.781637 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.783401 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781773 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492495, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492323, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781773 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779738 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.779534 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.779534 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.488031, 37.783808 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491465, 37.781637 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.783672 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.783604 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779738 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.781909 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.781773 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.780009 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.775667 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775803 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777838 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.492151, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.775871 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.775803 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493010, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.771936 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.772004 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492838, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St" }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775871 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776074 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489405, 37.772411 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.772207 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.772479 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787335 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785843 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785707 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783808 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481680, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.782044 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484941, 37.782180 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780280 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780009 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482710, 37.780077 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.784215 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484426, 37.774582 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484255, 37.774311 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484255, 37.772682 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484083, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772479 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478161, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477903, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480650, 37.772682 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.764337 ] } } +, +{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.764540 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.495756, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494726, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490435, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.761012 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495928, 37.760808 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495928, 37.760808 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758909 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761012 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760876 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.757008 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495241, 37.755176 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753548 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492666, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.761148 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761148 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.491636, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490263, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489233, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.765083 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481852, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.480307, 37.763658 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "LINC. WAY & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763455 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486486, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486486, 37.761283 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.761419 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761555 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761555 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485971, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.753955 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.761555 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479792, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.757755 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761555 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.760130 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480993, 37.755991 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755923 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.753955 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.754362 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.756194 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.755991 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754090 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.506399, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753140 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751037 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.749340 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.749136 ] } } +, +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745472 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506742, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747440 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.747440 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745607 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.745404 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.745404 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502279, 37.753005 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.753140 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498846, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.753208 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747440 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499533, 37.747711 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.747643 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.743707 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741671 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.741739 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.738073 ] } } +, +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.736037 ] } } +, +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.504168, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502623, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500219, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498331, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742146 ] } } +, +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.735358 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500734, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.734544 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734136 ] } } +, +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } +, +{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499189, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499189, 37.731150 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753276 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.749815 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.749544 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.747575 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.497473, 37.745947 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.497301, 37.745947 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.745879 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.747779 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747983 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747847 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746082 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491207, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.747983 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.747983 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486658, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.746354 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.744250 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743978 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.742349 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742146 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742282 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742282 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.742214 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.740110 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.740245 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.738616 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738413 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.742349 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487688, 37.744521 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742417 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.738752 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485628, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476358, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750426 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750222 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748729 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748526 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746490 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745268 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742689 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.742960 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.743164 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741264 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733933 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733729 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.733729 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.733526 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.733729 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493696, 37.733390 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.730335 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493696, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491636, 37.734136 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733933 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way" }, "geometry": { "type": "Point", "coordinates": [ -122.489233, 37.734272 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734408 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.485800, 37.734136 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483912, 37.734204 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734544 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734272 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729656 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734680 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.734408 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728027 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728027 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728027 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.728842 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724090 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721781 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "281 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "280 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.726941 ] } } +, +{ "type": "Feature", "properties": { "name": "170 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473269, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio & California Street", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.782383 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.782723 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780552 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780687 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780552 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780823 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469149, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464685, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.782723 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.780959 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.782926 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.782926 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "name": "7th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.783130 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470350, 37.777024 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773021 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773021 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.775260 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464857, 37.775396 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469835, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773361 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.773496 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773496 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.773632 ] } } +, +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St" }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785165 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785707 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.781162 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460909, 37.781298 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Commonwealth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Maple St" }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.786250 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.784147 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453699, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "name": "ARGUELLO BLVD & EUCLID AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783265 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.781434 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781366 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781095 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.781230 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779195 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461767, 37.777363 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.773700 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773768 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773564 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455072, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.774446 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.774311 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.774582 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454557, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453871, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.770850 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765626 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.765626 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470350, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765897 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765762 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.763794 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764133 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St. & 9th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764133 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.762233 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762166 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.759316 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.761826 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.761826 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756941 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.756330 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.756330 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.754226 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754090 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.758434 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.758569 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.756669 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.756533 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.754837 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462454, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.764065 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.762233 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462883, 37.762369 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460737, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762776 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.764337 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "500 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.763319 ] } } +, +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.763319 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763726 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454557, 37.764337 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758637 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.758434 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463140, 37.758705 ] } } +, +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756737 ] } } +, +{ "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.754633 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754905 ] } } +, +{ "type": "Feature", "properties": { "name": "345 Warren Dr E", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.754498 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "117 Warren Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.755312 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451982, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.784215 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.782044 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787335 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787200 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.786250 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.785232 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.787607 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.782723 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.778110 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778381 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.778245 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.775396 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.775396 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.774921 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "Shrader St & Grove St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773021 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773089 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773361 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773632 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778788 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778517 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.778788 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.778788 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.775667 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775871 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Central Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.773768 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447348, 37.773768 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.773903 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.771936 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.774175 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.774311 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774446 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.439966, 37.786250 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439966, 37.785165 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439795, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.785232 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.779534 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783401 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.783401 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781637 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783604 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438936, 37.780416 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.786182 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785843 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.781095 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.780959 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781366 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442198, 37.779263 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779195 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.777431 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440138, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777635 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438593, 37.777838 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.777838 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.438421, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.774582 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770783 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.770918 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.774718 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.774921 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.778177 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.778245 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.775125 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431726, 37.778517 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.775396 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.771258 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.769154 ] } } +, +{ "type": "Feature", "properties": { "name": "Shrader St & Haight St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.769290 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.768340 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.768272 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766440 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766847 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.764540 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.764405 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.765897 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449408, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769968 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769154 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770104 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769019 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.767119 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.767254 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.767119 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770240 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Central Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.770511 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766305 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "414 Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.763387 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763726 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.763726 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761691 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449064, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.761826 ] } } +, +{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.760876 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.758909 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "320 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.759926 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "210 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.761826 ] } } +, +{ "type": "Feature", "properties": { "name": "211 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Danvers St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.759791 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.757823 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "539 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.757484 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.756466 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756398 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "795 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.754090 ] } } +, +{ "type": "Feature", "properties": { "name": "800 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.754023 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } +, +{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768815 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.768069 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766508 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766847 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762437 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.769154 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.768951 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.767390 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.767390 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.769222 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.769154 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.767526 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.767390 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764133 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762437 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762369 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.762505 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Noe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761691 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760605 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.759044 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.755041 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.754023 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.754023 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.755991 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.755787 ] } } +, +{ "type": "Feature", "properties": { "name": "21st St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.754226 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.760876 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.759384 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.759180 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757755 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Collingwood St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.757619 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.756126 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.754633 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.750562 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474127, 37.748797 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748661 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.748729 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.746965 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746761 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.745132 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748933 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.744996 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.750697 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.749136 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.749340 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743096 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473440, 37.743232 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741196 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743096 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.743368 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.743164 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.739024 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470350, 37.736376 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468805, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.741196 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741128 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740924 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.740924 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740924 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Arrive" }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740924 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station Inbound" }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.741128 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740788 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738073 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.738073 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.739431 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.750969 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.751715 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.749815 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.751376 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747847 ] } } +, +{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp" }, "geometry": { "type": "Point", "coordinates": [ -122.457132, 37.747779 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.745268 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.747779 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746354 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455587, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453871, 37.745743 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.745675 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.740381 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740245 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460051, 37.739363 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.740110 ] } } +, +{ "type": "Feature", "properties": { "name": "126 Miraloma Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461424, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.744182 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.743978 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457476, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.743503 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.743096 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.743232 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD" }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736716 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.736716 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734544 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.732779 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.732100 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734544 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.734272 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.731150 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.731150 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.731218 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731014 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.731014 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.731014 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.731218 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469835, 37.734680 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.734951 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.733118 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.729928 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.729928 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.728299 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474642, 37.727212 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727212 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727212 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465200, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460566, 37.735290 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734544 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734408 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.730064 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460394, 37.730539 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733593 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732643 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.732236 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.732100 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457304, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.730878 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731285 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731421 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461424, 37.724972 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461424, 37.724904 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463484, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724361 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.724293 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.721917 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721781 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.749951 ] } } +, +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748933 ] } } +, +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School" }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.745947 ] } } +, +{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752326 ] } } +, +{ "type": "Feature", "properties": { "name": "74 Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.750426 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "name": "925 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "name": "956 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.751715 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.749136 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442713, 37.750697 ] } } +, +{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.746490 ] } } +, +{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.746354 ] } } +, +{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.747033 ] } } +, +{ "type": "Feature", "properties": { "name": "120 Portola Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746897 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.744386 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743503 ] } } +, +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744454 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741739 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.741060 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way" }, "geometry": { "type": "Point", "coordinates": [ -122.448034, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.737666 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.737463 ] } } +, +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.736784 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.736444 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736580 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "name": "Fountain St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.441683, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.750969 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.749340 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.748526 ] } } +, +{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.746897 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745268 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.749476 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.751376 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.751376 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.749611 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.748661 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.745607 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.745472 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744657 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.743639 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.743232 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.743096 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way" }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.738616 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.739974 ] } } +, +{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.738345 ] } } +, +{ "type": "Feature", "properties": { "name": "164 Addison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734204 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.733118 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } +, +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729928 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727891 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452326, 37.727620 ] } } +, +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728299 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731421 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.734001 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.734544 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.734001 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723546 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723003 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.451811, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721917 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.721985 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723003 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.723003 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level" }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720559 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728977 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.728842 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.727755 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730335 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731421 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St" }, "geometry": { "type": "Point", "coordinates": [ -122.431898, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733458 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.733390 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733593 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.732372 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St" }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726805 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725855 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725651 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725651 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441339, 37.723343 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723275 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723546 ] } } +, +{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.722053 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.723343 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724633 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.724701 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.724565 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Francis St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.726330 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726330 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.723954 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.806326 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.807004 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806732 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.805580 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.806665 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805647 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.805783 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.805647 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808292 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806190 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.805512 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.805512 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.806054 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808089 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808021 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.807411 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.807817 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.807817 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.808360 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806665 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.805715 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.806868 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801511 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.801511 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.801578 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.802121 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.797645 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.797781 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800832 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.798052 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798187 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.805105 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.805173 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805037 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.804834 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave&North Point St SE-NS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804834 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804088 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.805308 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423487, 37.805241 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.805037 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.802460 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802324 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802324 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802189 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.803681 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803477 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.801646 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.800493 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.798594 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.798459 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.798662 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.799001 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.798798 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.798798 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Green St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797713 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.796967 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.790523 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.790388 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.790184 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790727 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.796424 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Franklin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.794932 ] } } +, +{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794932 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794796 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.796153 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795271 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.793101 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.792083 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.791405 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.790455 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.790388 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.792355 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.791541 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790455 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790523 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.789506 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.804766 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802935 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.805308 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.805241 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804562 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804562 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804562 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.415934, 37.804223 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.801036 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.798933 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.800154 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799273 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799205 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799137 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798323 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.798323 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799476 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.799340 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799544 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.804969 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804359 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803749 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.802799 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.802664 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.802121 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.804969 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.804834 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.802935 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.801172 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Filbert St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.801239 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803138 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.799883 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.799951 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800086 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.799001 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.800222 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.800426 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.798187 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.797374 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Broadway", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.797238 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.795407 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.795339 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.795407 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.794661 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794389 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794864 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794661 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.792897 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.790862 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.790727 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789641 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.789370 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.791812 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792083 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.790184 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.789234 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.795949 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.795814 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.796017 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.796153 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.795271 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796153 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.795610 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795475 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796424 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796560 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.795339 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Powell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.791541 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410955, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.788828 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789031 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.808224 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay St & Midway St" }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.806122 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807275 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.807207 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.806936 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.806597 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803477 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803409 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802189 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.801443 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803681 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803545 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.802731 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "name": "COIT TOWER" }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.802664 ] } } +, +{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.799273 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799408 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.799137 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.800629 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.800697 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.798120 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.797645 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.796967 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.797306 ] } } +, +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.797034 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.797306 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.805173 ] } } +, +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.805173 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805037 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.803952 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.801443 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Filbert St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.802189 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801239 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.799679 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.798120 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.797781 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.800629 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.796831 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.795339 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.792897 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.796153 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.792490 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.792897 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Kearny St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792626 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792219 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792287 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.790116 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bush St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.790184 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789234 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.789099 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Post St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.789506 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.788285 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.792355 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788556 ] } } +, +{ "type": "Feature", "properties": { "name": "POST & GRANT", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.788556 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.795881 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792897 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.794796 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Front St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795068 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793304 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & SANSOME ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793304 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.790998 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.789777 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.789031 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792287 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.790320 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.790320 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Battery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "name": "BUSH ST & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Battery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 2nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.789370 ] } } +, +{ "type": "Feature", "properties": { "name": "2ND ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789234 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790184 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.789099 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788285 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.799001 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.799544 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.798933 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797781 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396193, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.797102 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792490 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "Drumm St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793982 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.793033 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396193, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796695 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.795000 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Ferry Building", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.794796 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395506, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Steuart St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "EMBARCADERO & ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.794118 ] } } +, +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart & Donchee Way" }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793915 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793033 ] } } +, +{ "type": "Feature", "properties": { "name": "Front & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Front St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791676 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Fremont St" }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.790116 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789370 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Natoma St" }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.789234 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.789506 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.788556 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395506, 37.791541 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission & Main St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.791812 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Beale St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.790862 ] } } +, +{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790727 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790591 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790591 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.790523 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395849, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.789913 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394133, 37.789709 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St&Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793101 ] } } +, +{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Hward St&Spear", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.791202 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792355 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391901, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St." }, "geometry": { "type": "Point", "coordinates": [ -122.393103, 37.788828 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790727 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.790591 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.790455 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789709 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828158 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.829853 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.373447, 37.829853 ] } } +, +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.371988, 37.828430 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.371988, 37.828294 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.824497 ] } } +, +{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.375422, 37.824158 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823277 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823413 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St. & Avenue D", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.373877, 37.823548 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue E" }, "geometry": { "type": "Point", "coordinates": [ -122.371473, 37.824565 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 13th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.829243 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 10th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827277 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.369928, 37.825243 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368898, 37.823616 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.366924, 37.825311 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371817, 37.816022 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818531 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822396 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821921 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue H", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.366152, 37.819887 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.370100, 37.818328 ] } } +, +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813039 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla St & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813242 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813174 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.812022 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.811818 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.822260 ] } } +, +{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.812022 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240" }, "geometry": { "type": "Point", "coordinates": [ -122.364521, 37.811886 ] } } +, +{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.363749, 37.811683 ] } } +, +{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.364264, 37.811344 ] } } +, +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.363405, 37.810394 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.786657 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.781909 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.781773 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.782044 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.787200 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.785436 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.787607 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.785707 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.782383 ] } } +, +{ "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425547, 37.779466 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423830, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780959 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.777024 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775871 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.776074 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.775803 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.779195 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.779331 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777363 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.774243 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.773768 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772207 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772004 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430353, 37.772004 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "785 Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425203, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Octavia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "Fell St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.775939 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773836 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423830, 37.773836 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.770986 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.773089 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccoppin St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.785843 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.787064 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.782180 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.780009 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.781230 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.780280 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.780145 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.783333 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783265 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.781705 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.783469 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780552 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.787335 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.786453 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Post St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.787674 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.786860 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.787878 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.787200 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.785843 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.783672 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.781637 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.781095 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St N" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.781162 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.781298 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.778177 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.777838 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775260 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775396 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.777431 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775939 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.773021 ] } } +, +{ "type": "Feature", "properties": { "name": "150 Otis St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "name": "Otis St & 12th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774582 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.774243 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.773361 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.778788 ] } } +, +{ "type": "Feature", "properties": { "name": "8TH St AND MARKET St" }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.778517 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.779195 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.779331 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St&Howard", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.775125 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772139 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.772004 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.770850 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.773903 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429667, 37.770240 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769290 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769290 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.767662 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767254 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.768883 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.766305 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 15th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428808, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.764405 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.762776 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.770579 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.769833 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.768408 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.763387 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759791 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.758298 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.757348 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.757484 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.757212 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756669 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754769 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.754633 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.761419 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.761691 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761419 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.757144 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.755583 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.755041 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.753412 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768611 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.768204 ] } } +, +{ "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.766712 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768476 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768476 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness &16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765083 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.763862 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.770376 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.769833 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769697 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.769086 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.769358 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.768069 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768476 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.762233 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.763998 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.759791 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.758162 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 18 th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.758909 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.758841 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.755787 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755176 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.753412 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755719 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416449, 37.755448 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.761826 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758976 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.758841 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20St" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761691 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759316 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.755923 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755448 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason & Turk" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis street & Powell street" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.785436 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL & MARKET TURNTABLE" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787674 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786657 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St &Stevenson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.783469 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mary St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781162 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782723 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.781230 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787607 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Minna St" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.787878 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.786182 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Third St" }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780416 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.780416 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.782180 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.781773 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 7th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.776617 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 6th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.773836 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772547 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.771461 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.774718 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771529 ] } } +, +{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 6th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.777974 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.772004 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771665 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.773496 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785707 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM" }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.784215 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Perry St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782723 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.783265 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.780009 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.779534 ] } } +, +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.783604 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.779738 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.775260 ] } } +, +{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.777431 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777024 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776278 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776278 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.776074 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773089 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd Street & King St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778110 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.773021 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.771190 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768408 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.768272 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.766372 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.764540 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.763319 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.762233 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.769901 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769765 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.768747 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.767458 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "17TH ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766305 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.763591 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.763523 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.761826 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757484 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755719 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754158 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757484 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755855 ] } } +, +{ "type": "Feature", "properties": { "name": "Sf General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.755176 ] } } +, +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.754023 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Vermont St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.759655 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Southern Heights Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758162 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & Southern Heights Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759723 ] } } +, +{ "type": "Feature", "properties": { "name": "176 Rhode Island St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756194 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.754498 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.754362 ] } } +, +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754498 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754362 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.753412 ] } } +, +{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.757348 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Carolina St" }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.757212 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755787 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754905 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.754837 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.397051, 37.766508 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766644 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762437 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.762844 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.770511 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & 4th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.766847 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "name": "1731 3RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.769697 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.769561 ] } } +, +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.769019 ] } } +, +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "name": "1730 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.766576 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.762844 ] } } +, +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.764337 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764405 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.762912 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.763387 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761148 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.759926 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761419 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.760062 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.759994 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.757484 ] } } +, +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.755991 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753548 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Coral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.757619 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.755448 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757755 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.760808 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760605 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.757823 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758162 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.757551 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.755176 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.755719 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.755041 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755448 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755312 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.749408 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.749204 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.744929 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.746965 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 30th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742825 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742146 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.742146 ] } } +, +{ "type": "Feature", "properties": { "name": "46 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.736648 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.736309 ] } } +, +{ "type": "Feature", "properties": { "name": "Randall St & Whitney St" }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.737123 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.742146 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.742282 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742417 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.742282 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.741060 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742417 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.742417 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.742417 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739635 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.739363 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.739024 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.737463 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752326 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752190 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.752190 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.751987 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.750290 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.749544 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752326 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.749136 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.748661 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St." }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746965 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.746761 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Power St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.746218 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Fair Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.745947 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Valencia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752598 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749204 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.749204 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752598 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom & Cesar Chavz St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746897 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744318 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.739295 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.739024 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.739092 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.744182 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.744386 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744250 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.741264 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.739024 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.736037 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733186 ] } } +, +{ "type": "Feature", "properties": { "name": "Still St & Lyell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.733458 ] } } +, +{ "type": "Feature", "properties": { "name": "4080 Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.733729 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429667, 37.731421 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.730471 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428808, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St" }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735901 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735223 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.735087 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.728706 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724768 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.722528 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.721374 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.724768 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.724768 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725176 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725447 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719337 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719337 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.735766 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.735087 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St" }, "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 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "name": "989 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732643 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.734951 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.732779 ] } } +, +{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.732507 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.729113 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.728842 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734680 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.735766 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734951 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "346 Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.733593 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.729928 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.727416 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Felton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.727416 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St" }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725855 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.726398 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.726398 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Burrows St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.724972 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723954 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.749544 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.753005 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753276 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751376 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744725 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.752122 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.750697 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742825 ] } } +, +{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.741331 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738345 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.737938 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742553 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743911 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.743911 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.742282 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.739159 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.739499 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.736376 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.752190 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.752326 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.751444 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397051, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.749883 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396193, 37.750019 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Dakota St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street" }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.752326 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.747372 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.395849, 37.747236 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.745947 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752598 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.741671 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.736309 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.737191 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737123 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394133, 37.736852 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736648 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.744250 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744046 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.740924 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.742960 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.742689 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.742417 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.738073 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736309 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.736309 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.739295 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740110 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739974 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739974 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.737191 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737938 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737666 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737666 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737666 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734272 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.732372 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.733186 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.733050 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730131 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.728027 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727348 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727416 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735290 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.735358 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.727348 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727755 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727620 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730403 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730199 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.729113 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729113 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726126 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.726534 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726669 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725244 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725040 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.726805 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.726941 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726398 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.725312 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724090 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.723546 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St" }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721510 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721510 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733186 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.727891 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735766 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735087 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734136 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734001 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.733865 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732236 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391386, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732236 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.730471 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.729385 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729317 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727891 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727891 ] } } +, +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.726941 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.725651 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725312 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.724157 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.722460 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722460 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.722053 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386751, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.755651 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753140 ] } } +, +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387609, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.748933 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.745879 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.746082 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.745743 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387180, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740517 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742553 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383661, 37.742553 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.383404, 37.743911 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383146, 37.743707 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.741128 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.741060 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.740924 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.739024 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385893, 37.736580 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.739974 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382803, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737666 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384176, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738752 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738616 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738752 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.737666 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.736987 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.735833 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732575 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.732372 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733118 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385035, 37.733186 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St" }, "geometry": { "type": "Point", "coordinates": [ -122.383490, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734680 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384777, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.729588 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.729520 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727348 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734001 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.382116, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.380056, 37.733458 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379885, 37.732507 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379713, 37.732372 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.734408 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.378941, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.377138, 37.732711 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.381687, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.380314, 37.730607 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729385 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728706 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.380228, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377138, 37.730064 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.728231 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386751, 37.726126 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727077 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375851, 37.731964 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.375593, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.374048, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.373791, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.372160, 37.729860 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729860 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729113 ] } } +, +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.368727, 37.725312 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725312 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.365465, 37.727891 ] } } +, +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.361002, 37.727348 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714856 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714584 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714584 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.717708 ] } } +, +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716757 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.717436 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717300 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714652 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713770 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714041 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714041 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714449 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469664, 37.714313 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714313 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467260, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.462626, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717708 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714856 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718251 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.713973 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714041 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714720 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Allison St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714449 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716146 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.715671 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.715739 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714449 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.717640 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715128 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713498 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714041 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718115 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713498 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714449 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717843 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.717300 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715331 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.714652 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.718251 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788760 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.775260 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Outbound", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775125 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778517 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Church Station/Outbound", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Church Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784215 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 477, "y": 395 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 326, "y": 791 }, "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 }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832395 ] } } +, +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831785 ] } } +, +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.532363, 37.831819 ] } } +, +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831887 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.527256, 37.832599 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.527213, 37.832463 ] } } +, +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.523437, 37.831650 ] } } +, +{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.527685, 37.829074 ] } } +, +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.530260, 37.825040 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.524424, 37.830463 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.524381, 37.830362 ] } } +, +{ "type": "Feature", "properties": { "name": "Bunker Rd & Field Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.523222, 37.831412 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.523265, 37.831345 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Light House", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.529702, 37.821819 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 792 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.718692 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483096, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483225, 37.718624 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720729 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719643 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479920, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721272 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721068 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474599, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469964, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465243, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463441, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720050 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461123, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720050 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457261, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451081, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.720390 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.721001 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.719846 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SAN JOSE AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720559 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720559 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721272 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431083, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429452, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.721272 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720390 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.718896 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.718760 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405076, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720661 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721136 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.720797 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719914 ] } } +, +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.716757 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716520 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496486, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716248 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714856 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.714551 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.711189 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718488 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478719, 37.717945 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480178, 37.714584 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714483 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477088, 37.717708 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477431, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716791 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715841 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.715976 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709322 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.709118 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474256, 37.717436 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474599, 37.715908 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.715908 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715229 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.715026 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.714822 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472367, 37.717742 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714618 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714754 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714143 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713770 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713600 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714075 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714041 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.713091 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.712989 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471251, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471337, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470994, 37.710918 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470050, 37.714415 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714449 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.714313 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.714279 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714347 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467389, 37.712514 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469449, 37.710375 ] } } +, +{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.710273 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467217, 37.714211 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St&Alemany St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467132, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.711631 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711427 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465072, 37.711835 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464900, 37.711631 ] } } +, +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708745 ] } } +, +{ "type": "Feature", "properties": { "name": "Daly City Bart Station", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.705757 ] } } +, +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468634, 37.707047 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714347 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462325, 37.713193 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.711291 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.710918 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461553, 37.711427 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.711291 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.710137 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.717742 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.717572 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.715976 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.715026 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.714856 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713193 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458892, 37.711495 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714143 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.713973 ] } } +, +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455974, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } +, +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710375 ] } } +, +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454772, 37.710307 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461295, 37.705995 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460694, 37.706165 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459879, 37.706368 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.706606 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706810 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.707353 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.707421 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.718522 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448592, 37.718285 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716248 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716044 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453141, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.713939 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714143 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714075 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448335, 37.710477 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710205 ] } } +, +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442670, 37.714686 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714483 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.711461 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.711733 ] } } +, +{ "type": "Feature", "properties": { "name": "Morse St & Lowell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.710952 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.712514 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.712853 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453313, 37.708643 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452197, 37.708881 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709492 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716520 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716452 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.716655 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440181, 37.716180 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.715671 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439322, 37.715705 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.715128 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437606, 37.714754 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.712446 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711088 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.711156 ] } } +, +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437949, 37.710205 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714449 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.715501 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.716112 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432284, 37.715128 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713498 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.713464 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.714143 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714041 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709967 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710952 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712955 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.712921 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712819 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.712140 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.711223 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.709492 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708881 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432456, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430139, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718149 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428336, 37.717470 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.711733 ] } } +, +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711868 ] } } +, +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.711088 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425675, 37.718285 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.713702 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709322 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.708643 ] } } +, +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712989 ] } } +, +{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.712785 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.712412 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419410, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711868 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710612 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713532 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.712038 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415891, 37.712004 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.711631 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.715026 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714415 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414432, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.712717 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412801, 37.711054 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712751 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.712174 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410483, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.710748 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.710477 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.710375 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709865 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420354, 37.708473 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.708507 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.708202 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.708643 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708372 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707896 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.707693 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.707149 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415547, 37.706946 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.708134 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707081 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.706538 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706300 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709322 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709051 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708270 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.717300 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716655 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716587 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.717063 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.715331 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.715162 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712649 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407393, 37.712446 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.710205 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409539, 37.710001 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.709933 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.711427 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.711495 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711359 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.713804 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.712581 ] } } +, +{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.711902 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716112 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400184, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.716995 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.714686 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714822 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.714958 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401986, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.712446 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Arleta Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712174 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712446 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.712276 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Leland Ave@Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403874, 37.710612 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713532 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.712887 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.712004 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400699, 37.712004 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711597 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.711631 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709865 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "BAY SHORE BLVD & SUNNYDALE AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405076, 37.708847 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404647, 37.709526 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711189 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711223 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394776, 37.710884 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.718251 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387824, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.712785 ] } } +, +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717470 ] } } +, +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.712140 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 791 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.515368, 37.831751 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.514939, 37.831785 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.508802, 37.833005 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502408, 37.836124 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502151, 37.836429 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.833887 ] } } +, +{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493825, 37.833683 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493997, 37.833616 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.833616 ] } } +, +{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835920 ] } } +, +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.833141 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.833073 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832836 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484040, 37.829514 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483525, 37.829446 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.806665 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803952 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803749 ] } } +, +{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.792219 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788454 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788387 ] } } +, +{ "type": "Feature", "properties": { "name": "BOWLEY ST & GIBSON RD", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482281, 37.790252 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792321 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480950, 37.792083 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.807546 ] } } +, +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807241 ] } } +, +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.806563 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807478 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806088 ] } } +, +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.806936 ] } } +, +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472110, 37.806732 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.803477 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.803579 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801036 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467303, 37.799849 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.803036 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.802901 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.800120 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460351, 37.798527 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460222, 37.798425 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.797950 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457776, 37.803681 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456832, 37.803918 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.801646 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456746, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456403, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.803850 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.803681 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.803749 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Transit Center", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.802291 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Transit Center NS-??/BZ", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.802087 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.801578 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.801443 ] } } +, +{ "type": "Feature", "properties": { "name": "220 Halleck St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801714 ] } } +, +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.800188 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.797882 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797950 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.797747 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.801070 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Halleck St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801002 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454085, 37.800765 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.800697 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800527 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455115, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798154 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453399, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799137 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452540, 37.799035 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451854, 37.799374 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.799205 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.798187 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.798052 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804359 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.803613 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445159, 37.803409 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443871, 37.804562 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.803782 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803613 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443442, 37.803647 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.802494 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.801545 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.802833 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.802833 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.800392 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.800324 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.798527 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.798425 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.797136 ] } } +, +{ "type": "Feature", "properties": { "name": "Baker St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.797611 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.800629 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.799849 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.800052 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442756, 37.800052 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard & Richardson Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.798662 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442756, 37.798866 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451682, 37.796695 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Simonds Loop", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451510, 37.796492 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Lyon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.795610 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445331, 37.795915 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447348, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447391, 37.790727 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447047, 37.788963 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791269 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.791202 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Scott St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442584, 37.803782 ] } } +, +{ "type": "Feature", "properties": { "name": "Scott St & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441812, 37.803070 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805410 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441297, 37.800120 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800256 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439666, 37.800459 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439322, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.799306 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.799544 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.800731 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & STEINER ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796865 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Steiner St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796865 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804427 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.804461 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802833 ] } } +, +{ "type": "Feature", "properties": { "name": "BATTERY St & GREENWICH St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.802630 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.802392 ] } } +, +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.802731 ] } } +, +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.805410 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.804868 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803443 ] } } +, +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.805274 ] } } +, +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805139 ] } } +, +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805105 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.801172 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.801307 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436490, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.800731 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.799713 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.799883 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799713 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.799612 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435632, 37.800832 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.800934 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434516, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Webster St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434516, 37.800934 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796797 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.797407 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.797136 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.796967 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797034 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432284, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441983, 37.796322 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442198, 37.796187 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438893, 37.796594 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.796729 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441297, 37.791575 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.791541 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.791710 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788183 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.791778 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788522 ] } } +, +{ "type": "Feature", "properties": { "name": "Green St & Steiner St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795983 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.795949 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.795848 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794898 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436662, 37.794898 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794118 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.794152 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.792524 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433400, 37.792660 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792728 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.792728 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792355 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Washington St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.791439 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.791507 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788454 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.789336 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.788828 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Steiner St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791710 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.789913 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.789743 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.788929 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790116 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509961, 37.779907 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779873 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 48th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.779772 ] } } +, +{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.512965, 37.779093 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.512064, 37.779025 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.779025 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.510304, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.510047, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.510004, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773666 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509875, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.510777, 37.771427 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.771699 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.779975 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.780043 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.507386, 37.779907 ] } } +, +{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504125, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504125, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.779738 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.779840 ] } } +, +{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.780993 ] } } +, +{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504125, 37.779772 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499704, 37.784995 ] } } +, +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499576, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503009, 37.781095 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500691, 37.779466 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.506270, 37.779059 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775362 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503610, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.507987, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.507772, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.773530 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.507043, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771495 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505670, 37.773564 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503610, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503524, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503309, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771766 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.779161 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500606, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499833, 37.779297 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500348, 37.771868 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500091, 37.771902 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.771970 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.510304, 37.767865 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.510476, 37.767356 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.510047, 37.764133 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509189, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509017, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.508759, 37.760164 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.507386, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.506270, 37.764065 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.506099, 37.764032 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762369 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.762200 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.508116, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Juda St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.507987, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.506013, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758671 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505755, 37.756771 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505584, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.754939 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754769 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502580, 37.760639 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502580, 37.760605 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760775 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499146, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499146, 37.760639 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.779432 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496400, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.781637 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.781637 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492537, 37.783435 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492452, 37.783435 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492537, 37.781603 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492323, 37.782010 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781739 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.781535 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493310, 37.779704 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779738 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779534 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492280, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.488074, 37.783808 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.491422, 37.781671 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.783672 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.783571 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.490606, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.490048, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779738 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.779975 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783672 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489018, 37.781875 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489276, 37.781739 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487130, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486873, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.488031, 37.779873 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487817, 37.780009 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.497430, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775769 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493010, 37.777838 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492194, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.775905 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.775803 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493138, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.776040 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.771936 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.771970 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.772241 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492881, 37.772106 ] } } +, +{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.777737 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775905 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.491851, 37.776040 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.776108 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.775973 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776074 ] } } +, +{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.772173 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489619, 37.772377 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489405, 37.772411 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.772241 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.772479 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772513 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.785877 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.783808 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785673 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783808 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481894, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481680, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.782044 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484727, 37.781942 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780247 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.779975 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782078 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482710, 37.780077 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481380, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478719, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478461, 37.784249 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.782214 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479277, 37.780450 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477517, 37.782282 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.780586 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.778279 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484555, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484384, 37.776176 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482409, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484426, 37.774548 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484212, 37.774311 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.772682 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484083, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483783, 37.772513 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480264, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478118, 37.776515 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477903, 37.776651 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475972, 37.776617 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480607, 37.772648 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.772852 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478461, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.764371 ] } } +, +{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.764540 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495799, 37.762607 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495971, 37.762505 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494726, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.764846 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.490435, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.488718, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.488246, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.761012 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495971, 37.760842 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495971, 37.760775 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.760910 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.760775 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495713, 37.759146 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758875 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761012 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760910 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.757042 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495456, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495284, 37.755176 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753548 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492452, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492666, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489705, 37.761182 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761114 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761182 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.491593, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.490263, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489448, 37.753582 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487302, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.765117 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.765117 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481852, 37.765321 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.765185 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.763149 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765185 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480264, 37.763692 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477732, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477603, 37.765524 ] } } +, +{ "type": "Feature", "properties": { "name": "LINC. WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477260, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "LINCOLN WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19TH AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.763692 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763421 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486529, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486529, 37.761317 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761385 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.761453 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481380, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761589 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761555 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.759723 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481122, 37.757857 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486014, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.753785 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483869, 37.753989 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482753, 37.754057 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483010, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.761521 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.761453 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.757755 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.761657 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477088, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761385 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.761792 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.761725 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761589 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.760164 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759960 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.757857 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480993, 37.756025 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755889 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.754124 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.753955 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.754328 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.756228 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.755991 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.753921 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754124 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.506356, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750935 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.753039 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505584, 37.752903 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505498, 37.752835 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505326, 37.752835 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504468, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753140 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751003 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.749340 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505069, 37.749170 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.747338 ] } } +, +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.507558, 37.745438 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.506700, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747474 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.747440 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.747304 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504983, 37.745607 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.745438 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504811, 37.745438 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502322, 37.753039 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753242 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500176, 37.753140 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.498846, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.498031, 37.753208 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747406 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.501936, 37.747575 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747542 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499533, 37.747677 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.747643 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.743741 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504725, 37.741840 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504554, 37.741671 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.741773 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.740008 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505326, 37.738073 ] } } +, +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.736003 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.737972 ] } } +, +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736139 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504125, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502623, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500219, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.498331, 37.741976 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742112 ] } } +, +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735562 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735528 ] } } +, +{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.735392 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735596 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.735358 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735392 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500734, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.498975, 37.734136 ] } } +, +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "Armory Rd & Herbst Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502322, 37.729724 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } +, +{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499232, 37.731591 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499232, 37.731150 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726771 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502451, 37.726398 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495112, 37.753310 ] } } +, +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495542, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495027, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.749815 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494855, 37.749578 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.497430, 37.747609 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.747575 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.497473, 37.745947 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.497301, 37.745947 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.745845 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494769, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.747779 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747949 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747813 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746082 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.745845 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.491207, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.748017 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487817, 37.747983 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486658, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487817, 37.746354 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487688, 37.746150 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494683, 37.744216 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743978 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.742349 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742180 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742146 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742282 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494340, 37.742112 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.742248 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492709, 37.742349 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.740110 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.740245 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.738616 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494082, 37.738379 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494168, 37.736750 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.736546 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.742349 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487645, 37.744521 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.744284 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.742655 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.742587 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742417 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487388, 37.740754 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487216, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487130, 37.738752 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485585, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485843, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484770, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483439, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748288 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481294, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481551, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750392 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750188 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.748560 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476230, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748695 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.748526 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.748288 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746456 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746659 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745234 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485456, 37.742553 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742689 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.742655 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.742791 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481208, 37.742723 ] } } +, +{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486100, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480435, 37.742859 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.742960 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.743164 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.742960 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741297 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733899 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496829, 37.733695 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496829, 37.733593 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496572, 37.733695 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496657, 37.733526 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.734035 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.733729 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733763 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493696, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.732949 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.730335 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.491593, 37.734136 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.491593, 37.733831 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733967 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489276, 37.734238 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734374 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485843, 37.734136 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483954, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483954, 37.734204 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482238, 37.734544 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734272 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729622 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486272, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734646 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.734408 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477260, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728536 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.728027 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.727993 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728061 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.730437 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.728876 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.724123 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484899, 37.724225 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727111 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.726975 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.718692 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483611, 37.722766 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.722494 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482152, 37.721747 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483096, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483225, 37.718624 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720729 ] } } +, +{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727178 ] } } +, +{ "type": "Feature", "properties": { "name": "280 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.726907 ] } } +, +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.725956 ] } } +, +{ "type": "Feature", "properties": { "name": "190 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.725855 ] } } +, +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725956 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.726330 ] } } +, +{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719643 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479920, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.784249 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473269, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio & California Street", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472539, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784588 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.784588 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.784452 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.782383 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473955, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.782485 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782485 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471166, 37.782689 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.780721 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780518 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472196, 37.780789 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780687 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780586 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470822, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780823 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469149, 37.784656 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467046, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466702, 37.784452 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464728, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469020, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.782689 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467647, 37.780993 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.782892 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.782892 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "name": "7th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.783130 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467303, 37.780789 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471938, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.776855 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470307, 37.776990 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474170, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472196, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.777058 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.777194 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464986, 37.775260 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464814, 37.775362 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469835, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773361 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466102, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.773462 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773462 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.773632 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464471, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784724 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.785165 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462282, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785707 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.783231 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.783096 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.781128 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459836, 37.783096 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781061 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460952, 37.781264 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.786894 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456832, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.785673 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785606 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456660, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Commonwealth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Maple St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455201, 37.786250 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453742, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "name": "ARGUELLO BLVD & EUCLID AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783265 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783265 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.781875 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.781434 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.781366 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.781162 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781095 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.781264 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781535 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779161 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464042, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.777262 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776990 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463956, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463784, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461767, 37.777397 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464128, 37.773666 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.773734 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.773734 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463698, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773530 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.773937 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773836 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.777465 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Turk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.777465 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.777058 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455373, 37.777635 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455029, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458291, 37.774412 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.774277 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454858, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.774616 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.774751 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453871, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454171, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.770850 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765626 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765456 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.765728 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.765660 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470350, 37.762064 ] } } +, +{ "type": "Feature", "properties": { "name": "TEA GARDEN DR/DeYoung Museum", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468934, 37.770545 ] } } +, +{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765897 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765762 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762064 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.765999 ] } } +, +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466531, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.764303 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.763794 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764099 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St. & 9th Ave.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764099 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave. & Irving St.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466702, 37.762233 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762132 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761928 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.761928 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.759316 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Avenue at Lawton Street", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.761792 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470565, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.759146 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.759146 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756975 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.756364 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.756296 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.755244 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.754260 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754124 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469535, 37.761996 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469535, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758298 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470050, 37.758196 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760232 ] } } +, +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.758535 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.758535 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758535 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.756669 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465672, 37.756500 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.754803 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.754633 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462454, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461896, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464299, 37.764099 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464042, 37.764167 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.762335 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464128, 37.762200 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462840, 37.762403 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764303 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.766135 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460737, 37.762742 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460523, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave &4th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460952, 37.762539 ] } } +, +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762776 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457948, 37.765999 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.764439 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458034, 37.764371 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "500 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.763319 ] } } +, +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.763319 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.763794 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456746, 37.763726 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.766203 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454686, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.764337 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758603 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.758467 ] } } +, +{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.758434 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463140, 37.758705 ] } } +, +{ "type": "Feature", "properties": { "name": "455 Warren Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461896, 37.757721 ] } } +, +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756771 ] } } +, +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463784, 37.754667 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754905 ] } } +, +{ "type": "Feature", "properties": { "name": "400 Warren Dr E", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461467, 37.756907 ] } } +, +{ "type": "Feature", "properties": { "name": "345 Warren Dr E", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461295, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.754464 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "117 Warren Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755346 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.755312 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786487 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451940, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.784215 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "name": "Walnut St & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448506, 37.787505 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449880, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448249, 37.784995 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453055, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.781603 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.782044 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447991, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787200 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.786250 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.785232 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446189, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446189, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443614, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.787607 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447305, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.782723 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782960 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453485, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451682, 37.778110 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.778008 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778347 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.778245 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.775396 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449279, 37.775362 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Parker Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453141, 37.774921 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452369, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "Shrader St & Grove St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451081, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773361 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773598 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449450, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778754 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.778551 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.778754 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.777533 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.778754 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.775667 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775905 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.775905 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.775701 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.778958 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443614, 37.779093 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443185, 37.777262 ] } } +, +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Central Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Lyon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443442, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.773802 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447305, 37.773734 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.774005 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.774073 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.773937 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.773937 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.771970 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.774073 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.774209 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.774277 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774412 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.787980 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440009, 37.786284 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.785165 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439795, 37.785334 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439752, 37.785300 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.785266 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.785402 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.783842 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & St Joseph'S Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.779500 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783435 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.783367 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.783164 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783164 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.781603 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439065, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783638 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438807, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.780552 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438979, 37.780450 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437177, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.780721 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.785945 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435031, 37.785809 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.788047 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.787708 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433143, 37.786148 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786080 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785809 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784249 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784724 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.781095 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.780925 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432714, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432628, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781739 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781535 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781332 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431941, 37.779873 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779297 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779161 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.777431 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440181, 37.777533 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.777635 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438593, 37.777804 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777737 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438293, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438421, 37.777669 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.774582 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770749 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440267, 37.770918 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.774718 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.774887 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.771291 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.778144 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.778279 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.775159 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431684, 37.778551 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.778347 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.775430 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432456, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437091, 37.771054 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436748, 37.771224 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.771766 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453055, 37.769154 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.769324 ] } } +, +{ "type": "Feature", "properties": { "name": "Shrader St & Haight St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.769324 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453485, 37.768340 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.768238 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766406 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Frederick St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766440 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769595 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.769697 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Waller St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766813 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.765524 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.765321 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.764540 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.764439 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.765931 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.765762 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.764914 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449708, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769935 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769154 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.770240 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.770104 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769019 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447906, 37.767085 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Frederick St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447906, 37.766949 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.767254 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.767288 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446446, 37.767153 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.767153 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.770342 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445331, 37.770206 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445159, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Central Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.770511 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767526 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.767356 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766305 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446103, 37.764303 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "name": "ASHBURY ST & CLAYTON ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.763014 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.765456 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "414 Roosevelt Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764507 ] } } +, +{ "type": "Feature", "properties": { "name": "415 Roosevelt Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.764507 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.763421 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.763726 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.763726 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449193, 37.761725 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761691 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449064, 37.760910 ] } } +, +{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447691, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.760910 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Clayton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.760876 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.758942 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.758807 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758671 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445846, 37.758671 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761317 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444043, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "320 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445331, 37.759926 ] } } +, +{ "type": "Feature", "properties": { "name": "341 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.759892 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444472, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "210 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.761792 ] } } +, +{ "type": "Feature", "properties": { "name": "211 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.761657 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Danvers St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Danvers St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760232 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.759791 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.757789 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444472, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Clayton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444043, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444129, 37.757484 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443442, 37.756432 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.756398 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.755346 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755482 ] } } +, +{ "type": "Feature", "properties": { "name": "795 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.754124 ] } } +, +{ "type": "Feature", "properties": { "name": "800 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.753989 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.768679 ] } } +, +{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768815 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.768035 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439494, 37.766508 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 37.766813 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way&Buena Vista Ter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438293, 37.766712 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766847 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767288 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767153 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441039, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.762064 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762403 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.769188 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.768951 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.767390 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767288 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.767424 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769392 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.769222 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769120 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.769120 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.767526 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.767390 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.765626 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764167 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.762607 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.762471 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.762471 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762539 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762403 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762369 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.762505 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.763896 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.763964 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Noe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761725 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.760571 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438293, 37.761589 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 37.760639 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Eureka St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760775 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.760707 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.759044 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440438, 37.755041 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.754057 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.754023 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Eureka St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.757551 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.755957 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.755821 ] } } +, +{ "type": "Feature", "properties": { "name": "21st St & Douglass St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755346 ] } } +, +{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.753514 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.754226 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.760842 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.760842 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.759384 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.759146 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.757789 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432885, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Collingwood St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.757619 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 21st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.756092 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 21st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.755957 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.754633 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.754396 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.750528 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472067, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750799 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474084, 37.748797 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474084, 37.748661 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.748831 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473826, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.748729 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473912, 37.746965 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746761 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.745098 ] } } +, +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473483, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748899 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470737, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470479, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470307, 37.745030 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749035 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749102 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466531, 37.750697 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.750867 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466445, 37.749170 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.749340 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.748831 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467046, 37.748967 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475457, 37.743096 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743062 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473440, 37.743198 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741501 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741196 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471423, 37.743062 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743130 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470307, 37.743402 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.743164 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471209, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.739024 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.739193 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.737564 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475157, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736478 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470393, 37.736376 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470050, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468805, 37.741433 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468462, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.741162 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741094 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466102, 37.741026 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.740924 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740958 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740958 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Arrive", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740924 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station Inbound", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.741162 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.740754 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740788 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738107 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738107 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.738073 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466960, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466960, 37.739601 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.739668 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.739465 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.750935 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458377, 37.751715 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456918, 37.749849 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.751478 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751614 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.751342 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458892, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748288 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA BLVD & 19TH AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.747847 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Dewey Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.747270 ] } } +, +{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.747813 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.745370 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457175, 37.745302 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.747813 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746388 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455587, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455544, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453828, 37.745777 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.745709 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.740415 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463698, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463441, 37.740110 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740245 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460093, 37.739363 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740211 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.740076 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460008, 37.739193 ] } } +, +{ "type": "Feature", "properties": { "name": "126 Miraloma Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461467, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461295, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.744148 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456403, 37.744012 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.741637 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.743469 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455459, 37.743096 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455201, 37.743232 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.742859 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.741976 ] } } +, +{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736682 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.736750 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.734510 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475200, 37.734680 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475200, 37.734544 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474513, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.732779 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.732473 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.732134 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473826, 37.731795 ] } } +, +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471509, 37.735053 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471852, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471852, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471938, 37.734306 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734306 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.734306 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.734917 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471251, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.731184 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.731150 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474341, 37.731184 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731048 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472453, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471852, 37.731252 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731285 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731319 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469792, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.734951 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468076, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733186 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465501, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.729962 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469449, 37.729928 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469106, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728400 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467561, 37.728299 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.727246 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474856, 37.727178 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474685, 37.727178 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721272 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721068 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474341, 37.721340 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474599, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.721476 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727246 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.727212 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727212 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469964, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465243, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464557, 37.732270 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463956, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460566, 37.735324 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459664, 37.734544 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734374 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.733695 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729962 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.730064 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460437, 37.730539 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.733593 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.732609 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732609 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457776, 37.732236 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.732100 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.730708 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.731116 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457304, 37.731116 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.730878 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731252 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455630, 37.731455 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726024 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.726024 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461381, 37.724938 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461381, 37.724904 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Dorado Ter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.724972 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463441, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720050 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461123, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724395 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.724259 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458291, 37.724259 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.723784 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723445 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723445 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454000, 37.723445 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720050 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457261, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.721917 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721747 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453055, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Panorama Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452025, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.751206 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.749951 ] } } +, +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748899 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745777 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452369, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452111, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.744996 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748933 ] } } +, +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.745947 ] } } +, +{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446103, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "74 Crestline Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446189, 37.751749 ] } } +, +{ "type": "Feature", "properties": { "name": "40 CRESTLINE DR", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.750392 ] } } +, +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445760, 37.750426 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "name": "925 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.752089 ] } } +, +{ "type": "Feature", "properties": { "name": "956 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.751681 ] } } +, +{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.749306 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.749136 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442756, 37.750697 ] } } +, +{ "type": "Feature", "properties": { "name": "6 Portola Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.749951 ] } } +, +{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.748017 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447906, 37.746456 ] } } +, +{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746659 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.746354 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444901, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444901, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.747033 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444215, 37.747134 ] } } +, +{ "type": "Feature", "properties": { "name": "120 Portola Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.748967 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.746897 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Portola Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.746659 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.744352 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743503 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Evelyn Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451167, 37.743062 ] } } +, +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744487 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450652, 37.742587 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741739 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450480, 37.741840 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449236, 37.740958 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.740822 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449193, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451510, 37.737802 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740211 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450480, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446017, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.741094 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447991, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447734, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.737700 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.737463 ] } } +, +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445846, 37.736852 ] } } +, +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.736784 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.736478 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736614 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442584, 37.752496 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.752292 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "name": "Fountain St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441640, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.751037 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440524, 37.750969 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.749306 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437606, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Eureka St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438378, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442498, 37.748526 ] } } +, +{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440181, 37.746931 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.745268 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.745234 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Diamond St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.751071 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.749645 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.749476 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.752903 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.752089 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751885 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.751376 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434001, 37.751206 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.751376 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751342 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.749611 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Noe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.748695 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.747847 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.747881 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.747066 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.746252 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.745641 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.745472 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744691 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 26th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.743605 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437520, 37.743639 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.743266 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.743096 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.741840 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.740279 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740211 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436919, 37.738616 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436662, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.738311 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.738413 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.738786 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.740008 ] } } +, +{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.738345 ] } } +, +{ "type": "Feature", "properties": { "name": "164 Addison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.736071 ] } } +, +{ "type": "Feature", "properties": { "name": "33 Moffitt St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.736818 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734204 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448936, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731455 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451425, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451253, 37.731455 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451253, 37.731455 ] } } +, +{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } +, +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729962 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.727857 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.727620 ] } } +, +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.728434 ] } } +, +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728299 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.731387 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446446, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.735528 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.734001 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.733967 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445588, 37.734001 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.731523 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.726024 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725549 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724090 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723546 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723852 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451167, 37.723105 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451081, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721917 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.722121 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.721985 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449279, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.720390 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.723003 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.721001 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.719846 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SAN JOSE AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720559 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720559 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } +, +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444901, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.722834 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444386, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440095, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441897, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731523 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440009, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440009, 37.729011 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.728977 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.728808 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.727755 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.731523 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.730369 ] } } +, +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730301 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437177, 37.731387 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.733831 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.733933 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431898, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.733492 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.733390 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434001, 37.733593 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.732406 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433400, 37.732541 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437005, 37.731319 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441640, 37.726839 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.725753 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442412, 37.725889 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725889 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725685 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725685 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.725956 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441211, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441339, 37.723377 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723275 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723445 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723682 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.723580 ] } } +, +{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439752, 37.722053 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721272 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.723377 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Norton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.724293 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.724667 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.724599 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.724701 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.724531 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.723954 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.723920 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723377 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Francis St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.726364 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726364 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.726160 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.723954 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721476 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423186, 37.806359 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.806359 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.807038 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.806732 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421899, 37.805580 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.806699 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.806631 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.805715 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805647 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.805817 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.805647 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808326 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.807241 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806156 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.805512 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417607, 37.805478 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417178, 37.806054 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Powell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.808597 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808089 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808021 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.807411 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.806563 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.807851 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.807784 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.808360 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.807614 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.806665 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.806495 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.805749 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.806868 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.807038 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801477 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.801511 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.801341 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.801680 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428164, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.801816 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.802121 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.802019 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.797645 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.797781 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428079, 37.800934 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800866 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427392, 37.798052 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798221 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425418, 37.805105 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425418, 37.804969 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425246, 37.805173 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805037 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425332, 37.804834 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave&North Point St SE-NS/BZ", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425160, 37.804800 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.804291 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.804122 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.805308 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423487, 37.805241 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.805003 ] } } +, +{ "type": "Feature", "properties": { "name": "Francisco Street & Polk Street", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423787, 37.803376 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802426 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802324 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802358 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802189 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424645, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805410 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.803647 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803477 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.801477 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.800493 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800324 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.798594 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424130, 37.798459 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798459 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.798662 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.799001 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.798798 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.798832 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422414, 37.798696 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Green St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797747 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.796967 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Octavia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.791914 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.790523 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.790354 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.790184 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790693 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427135, 37.790693 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796424 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Franklin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794898 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.794898 ] } } +, +{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.794932 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794796 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.796187 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.795271 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421470, 37.795102 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423358, 37.793948 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422414, 37.793067 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.792456 ] } } +, +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421298, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.793202 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.791032 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Franklin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424474, 37.791914 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.792117 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.791439 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.791371 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.791168 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422242, 37.790455 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422328, 37.790354 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.791914 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.791507 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790455 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420783, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790489 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.789506 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.804766 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.804800 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802901 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.802833 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416148, 37.804528 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.805342 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.805241 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804528 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804528 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804528 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804528 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415977, 37.804189 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.801002 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.801002 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.800222 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.798933 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.800188 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799273 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418981, 37.799239 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799171 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798357 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.798323 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797407 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799442 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.799340 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799544 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.799679 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.804969 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Francisco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.804393 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.803782 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803749 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.803409 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.802833 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.802697 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801816 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.802087 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.804969 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.804800 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411427, 37.802765 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.802935 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.801172 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Filbert St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.801239 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409711, 37.803138 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.799747 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.799883 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412715, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.799951 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Union St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.799985 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.800120 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Union St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800052 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.799035 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800493 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.800392 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.800188 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.800392 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.800426 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.798187 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Broadway", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.797340 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Broadway", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.797204 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.795339 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.795373 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.795339 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.795542 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.795407 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418294, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.794627 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794423 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.793406 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.792524 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.794559 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418036, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.795576 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794864 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794661 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.792863 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.791710 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790828 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.790862 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.790693 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.789675 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.789540 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789370 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417436, 37.791982 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.791846 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791100 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791032 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792049 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415590, 37.791269 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.791100 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.790184 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416921, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415462, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.789234 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.795949 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.795780 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414861, 37.795034 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795983 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.796153 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.795271 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414689, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.796119 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.796390 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.796187 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.795712 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.795610 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795441 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796390 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796560 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.795305 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Powell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.794627 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Washington St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.794491 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.792660 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Powell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414174, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791473 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.791541 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.788319 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788658 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.791710 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410998, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410955, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.788861 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.808224 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.806088 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.807343 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807241 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.807173 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.806936 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.806800 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406020, 37.806631 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.806597 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.803511 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803376 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802358 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802223 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.801409 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803715 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.803545 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.802731 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "name": "COIT TOWER", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.802664 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Filbert St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800527 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.799273 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.799205 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799374 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.800595 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.800697 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.797204 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.796797 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406106, 37.800765 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.798120 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.797611 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Grant Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406363, 37.797814 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.797001 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.797306 ] } } +, +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.797068 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.797340 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Kearny St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797170 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.805207 ] } } +, +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.805139 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805037 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.803918 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Filbert St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402930, 37.802324 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.802969 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Union St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402759, 37.801409 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Filbert St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.802155 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.802969 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801273 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Green St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.799679 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.798120 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.797407 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797543 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.797781 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.800595 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Broadway", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.798323 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400784, 37.796865 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.796729 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Washington St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.794627 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.796255 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.795373 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.793745 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.793033 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.792863 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.793745 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.794084 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.796119 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796051 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.794695 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.793406 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.792490 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.794491 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Kearny St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404561, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.792863 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Kearny St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792728 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Kearny St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792592 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792083 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.792219 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792287 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.792117 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.792117 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.791100 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.792321 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bush St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408853, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bush St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Powell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.789133 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Post St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.788387 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Post St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788183 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.789947 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789608 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.789472 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Powell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.788285 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788556 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Kearny St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.789811 ] } } +, +{ "type": "Feature", "properties": { "name": "POST & GRANT", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.788590 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403703, 37.795915 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401643, 37.796051 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402759, 37.794695 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.794016 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792931 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.794830 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Front St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795102 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.794288 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793304 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & SANSOME ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793304 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.793270 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.790998 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403703, 37.789743 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.788997 ] } } +, +{ "type": "Feature", "properties": { "name": "POST & MONTGOMERY", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.788997 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402501, 37.788488 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Pine St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.792287 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.790286 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.790354 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.790354 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Battery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.791303 ] } } +, +{ "type": "Feature", "properties": { "name": "BUSH ST & Battery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399669, 37.791303 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Battery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.791100 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 1st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 1st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399154, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 2nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789336 ] } } +, +{ "type": "Feature", "properties": { "name": "2ND ST & MARKET ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.788929 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788285 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.798967 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.799544 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & THE EMBARCADERO", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397780, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.798900 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797814 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.797068 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 1", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.797204 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.795407 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.794491 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792490 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.793406 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Davis St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.792524 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & Pine St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397523, 37.792592 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793542 ] } } +, +{ "type": "Feature", "properties": { "name": "Drumm St & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793982 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Main St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792999 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Beale St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.793033 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793202 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396193, 37.793474 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796695 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394433, 37.795000 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795102 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.795034 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Ferry Building", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.794830 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.793745 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Steuart St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Steuart St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "EMBARCADERO & ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "STEUART ST & FRANCISCO ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.792524 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794423 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.794152 ] } } +, +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.794220 ] } } +, +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.794220 ] } } +, +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart & Donchee Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793915 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394004, 37.792660 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.793474 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Stt & Steuart St NW-FS/SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793202 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.792999 ] } } +, +{ "type": "Feature", "properties": { "name": "Front & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Front St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791914 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791642 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Fremont St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789404 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Natoma St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/RAMP S", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.789641 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.789472 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.788522 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.791507 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.791982 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Main St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.791982 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission & Main St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394776, 37.791846 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Beale St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394347, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790828 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St. & Beale St.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790591 ] } } +, +{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.790761 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.790591 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.790591 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.790557 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Main St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790421 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789947 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395892, 37.789879 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.789201 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.789947 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.789811 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.789811 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.789811 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.789709 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St&Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793101 ] } } +, +{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792728 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392545, 37.791405 ] } } +, +{ "type": "Feature", "properties": { "name": "Hward St&Spear", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392545, 37.791168 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391086, 37.792355 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391086, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393103, 37.788861 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.788658 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.790795 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790761 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389884, 37.790557 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.790489 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.789608 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789675 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828192 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.826938 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.829853 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.373490, 37.829819 ] } } +, +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.371945, 37.828396 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 13th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.371945, 37.828328 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & 12th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.376323, 37.825480 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.375636, 37.824463 ] } } +, +{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.375422, 37.824158 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823243 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue C", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823413 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue D", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.372718, 37.824057 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St. & Avenue D", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.373919, 37.823514 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue E", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.371473, 37.824599 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 13th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.829277 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 10th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827311 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.370057, 37.825209 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.369928, 37.825243 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.368941, 37.823616 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.366967, 37.825311 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.371817, 37.816022 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.371430, 37.816226 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.369542, 37.818497 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822362 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821921 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.366323, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue H", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.366109, 37.819921 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.370143, 37.818328 ] } } +, +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813073 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla St & Treasure Island Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.370915, 37.813242 ] } } +, +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.371001, 37.813140 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813140 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.812022 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.811818 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.822226 ] } } +, +{ "type": "Feature", "properties": { "name": "California Ave & Avenue M", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.364178, 37.820735 ] } } +, +{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.364821, 37.811988 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.364564, 37.811852 ] } } +, +{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.363791, 37.811683 ] } } +, +{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.364306, 37.811344 ] } } +, +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.363362, 37.810496 ] } } +, +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.363405, 37.810394 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429624, 37.786487 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.784656 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.786657 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428164, 37.784859 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427821, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Octavia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.781909 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.781773 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.782010 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.787200 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425075, 37.785436 ] } } +, +{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785063 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.787844 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.785673 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421470, 37.785606 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.784656 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.782383 ] } } +, +{ "type": "Feature", "properties": { "name": "808 McAllister St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425547, 37.779466 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.779704 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Gough st", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423444, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.782485 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.781942 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780959 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.780077 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.778618 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430482, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.776990 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776855 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775837 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.776108 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.775803 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.776040 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.776040 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426963, 37.779195 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.779331 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777397 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774277 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.773768 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430739, 37.772139 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772207 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430482, 37.772004 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430353, 37.772038 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.772445 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "785 Mcallister St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425203, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Octavia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776515 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.777737 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "Fell St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.775973 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772920 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773802 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Octavia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.773836 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424645, 37.770952 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.773089 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Franklin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420955, 37.774175 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccoppin St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420783, 37.771766 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786555 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.786793 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786148 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.785843 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.787064 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.786352 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.787233 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417779, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.782282 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.782180 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.779975 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.779704 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.781230 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.780314 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.780179 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417693, 37.783367 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417436, 37.783231 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.783265 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417178, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417092, 37.781705 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.783469 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782621 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415805, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.780518 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780586 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416835, 37.780382 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415891, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.780721 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.780789 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414861, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.787437 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.786555 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414689, 37.786420 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Post St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413316, 37.786759 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.786860 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414432, 37.785538 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.784724 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413144, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.785809 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.787878 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.787166 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.787200 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.785843 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.783672 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782824 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.781671 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.781061 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St N", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412457, 37.780654 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412457, 37.780552 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.782078 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409883, 37.783401 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410226, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.781162 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.781298 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780314 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.778686 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419753, 37.778177 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418294, 37.778381 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775294 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "SOUTH VAN NESS AVE & 12TH ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.775091 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775362 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778890 ] } } +, +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.778754 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416835, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.777601 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.777601 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 9th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.777397 ] } } +, +{ "type": "Feature", "properties": { "name": "9TH St AND MARKET St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.777363 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775939 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & 12TH ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774955 ] } } +, +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418466, 37.772988 ] } } +, +{ "type": "Feature", "properties": { "name": "150 Otis St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "name": "Otis St & 12th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774582 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774311 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.774209 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415376, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 8th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778618 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.778788 ] } } +, +{ "type": "Feature", "properties": { "name": "8TH St AND MARKET St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.778483 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.779093 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412715, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.776448 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.778958 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.779161 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St&Howard", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 8th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.775125 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772106 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413745, 37.772004 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.770850 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.773903 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.774751 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 9th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.772411 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429709, 37.770240 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769290 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.769324 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.767526 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.767662 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Church St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.767763 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767831 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 14th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Church St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.767662 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767254 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.767356 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.769799 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.768883 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767763 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.767831 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767390 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767288 ] } } +, +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.766271 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 15th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428808, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.764371 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764405 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.764574 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764574 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.762810 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.762810 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.770579 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.769799 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.770138 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.768374 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.767865 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764710 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.764846 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.766271 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.764846 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.764642 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.763421 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.763082 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430482, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428422, 37.761453 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761385 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.761250 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428164, 37.761182 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759791 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427907, 37.758264 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428079, 37.757382 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.757450 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426877, 37.757246 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756635 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756432 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.754769 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427735, 37.754599 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425933, 37.761385 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.761521 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.761996 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.761657 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.761419 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758264 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.758739 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.757144 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.755550 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755074 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.753412 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 13th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.770477 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.768611 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.768204 ] } } +, +{ "type": "Feature", "properties": { "name": "15th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.766678 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.767153 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768476 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415547, 37.768476 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.766203 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.765117 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.765117 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness &16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417607, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765253 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765049 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762132 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.763828 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412286, 37.770376 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.769799 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.769120 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410741, 37.769324 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.768103 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768442 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.765524 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.762200 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.765728 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.764032 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.763149 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410140, 37.762946 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.759791 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.758162 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 18 th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417092, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417006, 37.758942 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.758875 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.757517 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.755821 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.755176 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755719 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416449, 37.755482 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.759010 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.758976 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.758807 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.761657 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410097, 37.760571 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759316 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414346, 37.755957 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755448 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.787471 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Ellis St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.785063 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason & Turk", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.783910 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784317 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408423, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis street & Powell street", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.785436 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Ellis St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL & MARKET TURNTABLE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell/Market", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.784452 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.784147 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407994, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786657 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.786386 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Ellis St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.785843 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.785538 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.783401 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St &Stevenson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.783503 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mary St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781196 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782960 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782756 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.782723 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.781434 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.781230 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403531, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403188, 37.787708 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402501, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Stevenson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786386 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.786352 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Minna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.784656 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.784249 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.787878 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.786216 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399240, 37.786080 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Third St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.780314 ] } } +, +{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.780450 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 5th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403102, 37.780382 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.780687 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.777940 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.776855 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 7th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.776651 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.778618 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.777329 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 7th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 6th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.773870 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.773530 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.772547 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.771461 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.774684 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404990, 37.774582 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771563 ] } } +, +{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.779297 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 6th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402244, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 5th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.777940 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.776448 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.772038 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771699 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401643, 37.771699 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.773666 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.773462 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 2nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398124, 37.786759 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398124, 37.786555 ] } } +, +{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785741 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785741 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.785334 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787437 ] } } +, +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.784181 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd ST & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Perry St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782689 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.779466 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.783299 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779975 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 1st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.786182 ] } } +, +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & Main St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784588 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391944, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390571, 37.780687 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388339, 37.783604 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389884, 37.779704 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389541, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396665, 37.778449 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.776312 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397180, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397180, 37.775430 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.777262 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394433, 37.777431 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777194 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.777024 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.777058 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.777024 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776312 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776380 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393918, 37.776312 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776278 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394347, 37.776074 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Berry St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775769 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397952, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773123 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779297 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392459, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd Street & King St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778110 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Berry St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.775294 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776176 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389970, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772988 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.771156 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.768442 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.768272 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.768272 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.766339 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405505, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Vermont St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.764574 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.763285 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.762200 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 8th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770240 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Townsend St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.769901 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769765 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.768747 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402844, 37.768578 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402930, 37.767458 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.765931 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "17TH ST & KANSAS ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766339 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766135 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.765999 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401643, 37.766067 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401729, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.764914 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.763557 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.766271 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399669, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.764914 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401385, 37.763489 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.762200 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.761657 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.759078 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404218, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757517 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.756194 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755719 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754158 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757484 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.757178 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755889 ] } } +, +{ "type": "Feature", "properties": { "name": "Sf General Hospital", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.755210 ] } } +, +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.753989 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404046, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.761996 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404046, 37.759655 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Vermont St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403874, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402930, 37.759689 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759553 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402244, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.759451 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Southern Heights Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.759655 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.758128 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400784, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & Southern Heights Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759723 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.756873 ] } } +, +{ "type": "Feature", "properties": { "name": "176 Rhode Island St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756160 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.754464 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.754396 ] } } +, +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.754464 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402501, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754498 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754328 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.753378 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.757450 ] } } +, +{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.757348 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Carolina St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.757314 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.757178 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.755923 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.755753 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754871 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.754837 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Missouri St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.766508 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Missouri St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.766406 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766644 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397780, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.762607 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762437 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.762607 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.762844 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393231, 37.762742 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.770511 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & 4th Street", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.766847 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "name": "1731 3RD ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769731 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389455, 37.769324 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769561 ] } } +, +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.769052 ] } } +, +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "name": "1730 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389369, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.766576 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.766576 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.762878 ] } } +, +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.764371 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764405 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.764439 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.762912 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.764167 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.763353 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.762674 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.761317 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.761148 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398381, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.759960 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761419 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.760130 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.760096 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.759994 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395978, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.758128 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Texas St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.760028 ] } } +, +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395205, 37.758264 ] } } +, +{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398038, 37.757450 ] } } +, +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.755957 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.754803 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.754667 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753548 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Coral Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754667 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395720, 37.756839 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.757653 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395806, 37.755448 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395720, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "14 Dakota St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "101 Dakota St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757755 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391772, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.760775 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.760605 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760571 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757857 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.757789 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388511, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd ST & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.758060 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758162 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388082, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393060, 37.757585 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.755142 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.755007 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.755685 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388082, 37.755074 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755312 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755278 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.749374 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427135, 37.749170 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.746524 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.744929 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.746999 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426877, 37.746795 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425332, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425246, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.751851 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 30th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743605 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742825 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426620, 37.742655 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.742044 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426534, 37.742146 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426534, 37.742112 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742112 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426448, 37.742214 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426362, 37.742146 ] } } +, +{ "type": "Feature", "properties": { "name": "46 Addison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.736648 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.736444 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.736343 ] } } +, +{ "type": "Feature", "properties": { "name": "Randall St & Whitney St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427907, 37.737123 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427735, 37.737123 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424474, 37.742180 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.743809 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.741060 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.741026 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425675, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425504, 37.739635 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.739804 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.739736 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.739397 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose& Randall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.739736 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.738990 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.738854 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.737463 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.736207 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740211 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740279 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752190 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.752326 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.752190 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.751953 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.750290 ] } } +, +{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.750663 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.749510 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752326 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752496 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416148, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416148, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.749102 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 26th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.748661 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420354, 37.747983 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.748560 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746931 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.746727 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.746659 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Power St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419410, 37.746252 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Fair Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.745913 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Valencia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.748288 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.752564 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752598 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752428 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.751003 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749238 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.749238 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752598 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748492 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom & Cesar Chavz St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413745, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746863 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Alabama St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.748424 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744284 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.739295 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418466, 37.739295 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.739024 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416406, 37.739092 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413144, 37.744182 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.744148 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410483, 37.744352 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744284 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.741230 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.741501 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.741840 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.738990 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413316, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.738786 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.738243 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.738243 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.737157 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.736037 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412114, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411427, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.740076 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.739804 ] } } +, +{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733220 ] } } +, +{ "type": "Feature", "properties": { "name": "Still St & Lyell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.733492 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.733458 ] } } +, +{ "type": "Feature", "properties": { "name": "4080 Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427993, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.733729 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.730641 ] } } +, +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429667, 37.731387 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429280, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429709, 37.730437 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.728706 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728604 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.728672 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.730844 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428808, 37.728468 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.728604 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728604 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Murray St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425933, 37.734035 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735901 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424474, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.735256 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.735256 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.735087 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.728706 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426105, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421899, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.728740 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724734 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.723988 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.723105 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431083, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.722494 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429452, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721544 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.721374 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.721272 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426105, 37.724667 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424388, 37.724734 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.724734 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725074 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725210 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725583 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725413 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720390 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.735800 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.735121 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Arnold Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.734951 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.735053 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "name": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732609 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417006, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.734951 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416921, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417779, 37.732813 ] } } +, +{ "type": "Feature", "properties": { "name": "909 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.732847 ] } } +, +{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.732541 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419410, 37.729147 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.729011 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.729011 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.728842 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415032, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415032, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellsworth St & Crescent Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734680 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.735800 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.734951 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "346 Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.733593 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.734917 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411170, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.729860 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.729928 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.727416 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Felton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.727382 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.730912 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.725855 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.725956 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.726398 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.726364 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.718896 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.726466 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.725142 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413402, 37.725006 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.723920 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412887, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723241 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.723105 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.722698 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722834 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.718760 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.752835 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.749510 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.753005 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.753242 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751410 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409539, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744725 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402244, 37.751885 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.752122 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 26th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.750731 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.750731 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.750867 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400012, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747134 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403703, 37.746422 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743062 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742859 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.743334 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742859 ] } } +, +{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.741331 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.739668 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.739533 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.738379 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.739872 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.737938 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742519 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.741060 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743944 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398810, 37.743911 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.741501 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.738786 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.739125 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400527, 37.739533 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398896, 37.736376 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.752292 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752224 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752156 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 26th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.752564 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.751444 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397051, 37.749035 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.749883 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396235, 37.750019 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Dakota St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.752496 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.747338 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395892, 37.747270 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393918, 37.746150 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393832, 37.745981 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752631 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752564 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387738, 37.750392 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396922, 37.742791 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.741705 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.738243 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.736309 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.737225 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737089 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.737157 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.736207 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736852 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736648 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394519, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.744250 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390485, 37.744046 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.740687 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388597, 37.742960 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.742994 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742723 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742723 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742723 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742689 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388167, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391429, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391257, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.738073 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737564 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737530 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736343 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736275 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.736309 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.739329 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389112, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389112, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.740110 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.739974 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739974 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.737225 ] } } +, +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.737938 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.737938 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.737632 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.737632 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737632 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Boutwell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405591, 37.734238 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.732406 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.732338 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.733288 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.733220 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404819, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732949 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.733050 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.732066 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731319 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408853, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730098 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404990, 37.728027 ] } } +, +{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.727993 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727314 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727450 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.734170 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735256 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.735324 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "name": "Thornton Dr&Scotia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399240, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727518 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403531, 37.727314 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727755 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.727654 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728468 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.730369 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Williams Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730199 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.729113 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.729113 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726296 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.726126 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.726534 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.726669 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725210 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.723377 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408423, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407994, 37.725074 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.726805 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.726907 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405076, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403016, 37.726364 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.725312 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724090 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724191 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.723546 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400184, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.723275 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720661 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401385, 37.721544 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.721476 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721544 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.733288 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.733186 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731998 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.731795 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395291, 37.731184 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.727925 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392716, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735800 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735664 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390485, 37.735087 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734374 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390742, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390914, 37.734103 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734136 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734035 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street at Palou Ave SE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390914, 37.733899 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.733865 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732270 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.732270 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.732270 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.732270 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391343, 37.732406 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732236 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.732202 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.734510 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390056, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389026, 37.732881 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392030, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.730437 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.729385 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729215 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392631, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729283 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Williams Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.729215 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727925 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390399, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727891 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397952, 37.723003 ] } } +, +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.726941 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.725685 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.725481 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725481 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.725447 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725312 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.724157 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.723784 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721136 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.722494 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.720797 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722426 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722630 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722460 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.722019 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.721408 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.727077 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727043 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719914 ] } } +, +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386880, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386880, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386794, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386708, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.755651 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387652, 37.753140 ] } } +, +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.750324 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387567, 37.749102 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.748933 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387266, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.745845 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.746048 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.745777 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387137, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386408, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740551 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742519 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383704, 37.742553 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383361, 37.743911 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743809 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383189, 37.743707 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384648, 37.741128 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.741060 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384562, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384520, 37.740687 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386537, 37.738990 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386279, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385893, 37.736614 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.740008 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.382631, 37.739872 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739804 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.382803, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384133, 37.737700 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384176, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.381773, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738752 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738616 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.380786, 37.738786 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379498, 37.737089 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379498, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379241, 37.737666 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.737021 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.735833 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732066 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387309, 37.731862 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.731862 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386622, 37.732575 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386622, 37.732372 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386065, 37.733016 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385035, 37.733186 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383533, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383533, 37.735732 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734680 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384863, 37.733050 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384777, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383103, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.729554 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385163, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386279, 37.729520 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727348 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.382674, 37.730165 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729419 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734170 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734035 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.382116, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.380013, 37.733458 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379842, 37.733288 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379928, 37.732507 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379713, 37.732406 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.734374 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Middle Point Rd E", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.734103 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.378941, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.377181, 37.732711 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.381730, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.381387, 37.730776 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.380357, 37.730573 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.381387, 37.729385 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728672 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.380185, 37.727993 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.377009, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.377095, 37.730030 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.728231 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386751, 37.726126 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726024 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727111 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.375894, 37.731998 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.375593, 37.731998 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.374048, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.729894 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730233 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.373748, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.372117, 37.729860 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.371860, 37.729894 ] } } +, +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.373147, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729147 ] } } +, +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.368727, 37.725345 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.367911, 37.725345 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.365594, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728604 ] } } +, +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.365465, 37.727925 ] } } +, +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.360959, 37.727348 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.716757 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716520 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496486, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716248 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718488 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478719, 37.717945 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477088, 37.717708 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477431, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716791 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.715976 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474256, 37.717436 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474599, 37.715908 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.715908 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472367, 37.717742 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.717742 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.717572 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.715976 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.718522 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448592, 37.718285 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716248 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716044 ] } } +, +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716520 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716452 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.716655 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440181, 37.716180 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.716112 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430139, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718149 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428336, 37.717470 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425675, 37.718285 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.717300 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716655 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716587 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.717063 ] } } +, +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716112 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400184, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.716995 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.718251 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717470 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435288, 37.762674 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762607 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.792999 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Station Outbound", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Outbound", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775159 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778686 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778551 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Church Station/Outbound", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Church Station/Downtown", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784317 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Downtown", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784215 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 954, "y": 791 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +] } +] } +] } diff --git a/tests/muni/out/-z11_-ycount_--set-attribute_count%3a1_--accumulate-attribute_count%3asum_--retain-points-multiplier_5.json b/tests/muni/out/-z11_-ycount_--set-attribute_count%3a1_--accumulate-attribute_count%3asum_--retain-points-multiplier_5.json new file mode 100644 index 000000000..e1d578d3d --- /dev/null +++ b/tests/muni/out/-z11_-ycount_--set-attribute_count%3a1_--accumulate-attribute_count%3asum_--retain-points-multiplier_5.json @@ -0,0 +1,34708 @@ +{ "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.431641,37.788049,11", +"description": "tests/muni/out/-z11_-ycount_--set-attribute_count%3a1_--accumulate-attribute_count%3asum_--retain-points-multiplier_5.json.check.mbtiles", +"format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/muni/out/-z11_-ycount_--set-attribute_count%3a1_--accumulate-attribute_count%3asum_--retain-points-multiplier_5.json.check.mbtiles -z11 -ycount --set-attribute count:1 --accumulate-attribute count:sum --retain-points-multiplier 5 tests/muni/muni.json", +"json": "{\"vector_layers\":[{\"id\":\"muni\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":11,\"fields\":{\"count\":\"Number\"}},{\"id\":\"subway\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":11,\"fields\":{\"count\":\"Number\"}}],\"tilestats\":{\"layerCount\":2,\"layers\":[{\"layer\":\"muni\",\"count\":4592,\"geometry\":\"Point\",\"attributeCount\":1,\"attributes\":[{\"attribute\":\"count\",\"count\":69,\"type\":\"number\",\"values\":[1,10,102,103,104,11,128,13,131,14,141,142,15,152,154,155,156,157,16,17,19,2,20,21,22,23,24,25,255,256,257,26,269,270,3,34,35,37,38,389,39,391,392,4,40,41,42,5,51,52,53,54,56,57,6,62,63,7,8,9,913,915,916,917,918,919,920,93,94],\"min\":1,\"max\":920}]},{\"layer\":\"subway\",\"count\":19,\"geometry\":\"Point\",\"attributeCount\":1,\"attributes\":[{\"attribute\":\"count\",\"count\":6,\"type\":\"number\",\"values\":[1,2,3,4,5,6],\"min\":1,\"max\":6}]}]}}", +"maxzoom": "11", +"minzoom": "0", +"name": "tests/muni/out/-z11_-ycount_--set-attribute_count%3a1_--accumulate-attribute_count%3asum_--retain-points-multiplier_5.json.check.mbtiles", +"strategies": "[{\"dropped_by_rate\":4601},{\"dropped_by_rate\":4601},{\"dropped_by_rate\":4596},{\"dropped_by_rate\":4586},{\"dropped_by_rate\":4561},{\"dropped_by_rate\":4506},{\"dropped_by_rate\":4366},{\"dropped_by_rate\":4011},{\"dropped_by_rate\":4069},{\"dropped_by_rate\":1072},{},{}]", +"tippecanoe_decisions": "{\"basezoom\":11,\"droprate\":2.5,\"retain_points_multiplier\":5}", +"type": "overlay", +"version": "2" +}, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "count": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "count": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "count": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "count": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.822802 ] } } +, +{ "type": "Feature", "properties": { "count": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.822802 ] } } +, +{ "type": "Feature", "properties": { "count": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.822802 ] } } +, +{ "type": "Feature", "properties": { "count": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.822802 ] } } +, +{ "type": "Feature", "properties": { "count": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.822802 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.788081 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.840157 ] } } +, +{ "type": "Feature", "properties": { "count": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.840157 ] } } +, +{ "type": "Feature", "properties": { "count": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.840157 ] } } +, +{ "type": "Feature", "properties": { "count": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.840157 ] } } +, +{ "type": "Feature", "properties": { "count": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.840157 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.788081 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.831480 ] } } +, +{ "type": "Feature", "properties": { "count": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.831480 ] } } +, +{ "type": "Feature", "properties": { "count": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 37.831480 ] } } +, +{ "type": "Feature", "properties": { "count": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 37.831480 ] } } +, +{ "type": "Feature", "properties": { "count": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 37.831480 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "count": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "count": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "count": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "count": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "count": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "count": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "count": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "count": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.744657 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.788081 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.831480 ] } } +, +{ "type": "Feature", "properties": { "count": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.831480 ] } } +, +{ "type": "Feature", "properties": { "count": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 37.831480 ] } } +, +{ "type": "Feature", "properties": { "count": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 37.831480 ] } } +, +{ "type": "Feature", "properties": { "count": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.525024, 37.831480 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "count": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "count": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "count": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "count": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "count": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "count": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "count": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "count": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "count": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "count": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "count": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "count": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "count": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "count": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "count": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "count": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "count": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "count": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "count": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "count": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "count": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "count": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "count": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "count": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "count": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "count": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.709899 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.788081 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.818463 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.818463 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.818463 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.818463 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.818463 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.831480 ] } } +, +{ "type": "Feature", "properties": { "count": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.831480 ] } } +, +{ "type": "Feature", "properties": { "count": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.533264, 37.831480 ] } } +, +{ "type": "Feature", "properties": { "count": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 37.831480 ] } } +, +{ "type": "Feature", "properties": { "count": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.527771, 37.833649 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "count": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "count": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "count": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "count": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "count": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "count": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "count": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "count": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "count": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "count": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "count": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "count": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "count": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "count": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "count": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "count": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "count": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "count": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "count": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "count": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "count": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "count": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "count": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "count": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "count": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "count": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "count": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "count": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "count": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "count": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "count": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "count": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "count": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "count": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "count": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "count": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "count": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "count": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "count": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "count": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "count": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "count": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "count": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "count": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "count": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "count": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "count": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "count": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "count": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "count": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "count": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "count": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "count": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "count": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "count": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "count": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "count": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "count": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "count": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "count": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "count": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "count": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.712072 ] } } +, +{ "type": "Feature", "properties": { "count": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.712072 ] } } +, +{ "type": "Feature", "properties": { "count": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.712072 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "count": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "count": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.788081 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.820633 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.820633 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.820633 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.820633 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.820633 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 6, "x": 10, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832565 ] } } +, +{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.831480 ] } } +, +{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.531891, 37.831480 ] } } +, +{ "type": "Feature", "properties": { "count": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 37.831480 ] } } +, +{ "type": "Feature", "properties": { "count": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.527771, 37.832565 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "count": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "count": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "count": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "count": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "count": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "count": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "count": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "count": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "count": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "count": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "count": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "count": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "count": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "count": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "count": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "count": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.726194 ] } } +, +{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "count": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "count": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "count": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "count": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "count": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "count": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "count": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "count": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "count": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "count": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "count": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "count": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "count": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "count": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "count": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "count": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "count": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "count": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "count": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "count": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "count": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "count": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "count": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "count": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "count": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "count": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "count": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "count": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "count": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "count": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.808699 ] } } +, +{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.807614 ] } } +, +{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.807614 ] } } +, +{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.807614 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "count": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "count": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "count": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "count": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "count": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "count": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.824972 ] } } +, +{ "type": "Feature", "properties": { "count": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.823887 ] } } +, +{ "type": "Feature", "properties": { "count": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.367096, 37.824972 ] } } +, +{ "type": "Feature", "properties": { "count": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.816293 ] } } +, +{ "type": "Feature", "properties": { "count": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.816293 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "count": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "count": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "count": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "count": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "count": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "count": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "count": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "count": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.767458 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "count": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "count": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "count": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "count": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "count": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "count": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "count": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "count": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "count": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.766372 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "count": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "count": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "count": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "count": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "count": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "count": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "count": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "count": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "count": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "count": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "count": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750087 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "count": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "count": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "count": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "count": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.706640 ] } } +, +{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.712072 ] } } +, +{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.712072 ] } } +, +{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "count": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "count": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "count": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "count": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.716418 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "count": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "count": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 6, "x": 29, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.819548 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.819548 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.819548 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.819548 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.819548 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 7, "x": 20, "y": 49 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832565 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.832022 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.532578, 37.832022 ] } } +, +{ "type": "Feature", "properties": { "count": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 37.832022 ] } } +, +{ "type": "Feature", "properties": { "count": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.527084, 37.832565 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.802731 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.804901 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.804901 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.510605, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.754973 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "count": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "count": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "count": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.756058 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.756058 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.727823 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.727823 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.727823 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.730539 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.726194 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "count": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "count": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "count": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.763658 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.759316 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.759316 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.745743 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.745743 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "count": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.750629 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.750629 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.750087 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.750629 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "count": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "count": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.751715 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.749544 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.790795 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804359 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804359 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804359 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.798933 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.798933 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "count": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.808156 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.805986 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807071 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807071 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.807071 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.804901 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.802189 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.802731 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.801646 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "count": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "count": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "count": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "count": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.790795 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.790252 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.790252 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.790252 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790795 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.790795 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.824972 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.369156, 37.823345 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.367096, 37.825514 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.815751 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.816293 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "count": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "count": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "count": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769086 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769086 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.767458 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768001 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769086 ] } } +, +{ "type": "Feature", "properties": { "count": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769086 ] } } +, +{ "type": "Feature", "properties": { "count": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.768001 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.756058 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.786453 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.786453 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.763658 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.766372 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.754973 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "count": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.745743 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "count": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "count": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.732711 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.749544 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.745743 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750629 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.726737 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.726737 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750087 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "count": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.732711 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.727823 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.713702 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.713702 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.707183 ] } } +, +{ "type": "Feature", "properties": { "count": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "count": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707183 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.707183 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.716961 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710443 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710443 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.712072 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.710443 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.712072 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713702 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.716961 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716961 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.710986 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 7, "x": 59, "y": 49 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 40, "y": 99 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733526 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733526 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.730539 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "count": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738413 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738413 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.722121 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.722121 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724836 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739499 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727552 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "count": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "count": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "count": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726737 ] } } +, +{ "type": "Feature", "properties": { "count": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726466 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.736784 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.736784 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727552 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.726737 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.381172, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732711 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.376022, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727823 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713702 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713702 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.706912 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713430 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718319 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710443 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707455 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.707455 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718319 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718319 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.715603 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.713430 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710443 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713430 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713430 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.712615 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708541 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707998 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707726 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.716961 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712072 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713430 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.712887 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.712072 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832294 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.536354, 37.831751 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.532234, 37.831751 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831751 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.527084, 37.832565 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.502022, 37.836361 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.833921 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.833649 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.833649 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.833649 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788353 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788353 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.790252 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799747 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800832 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798120 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.799476 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.799205 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.798120 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.798120 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804359 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.800290 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.797034 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795949 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.800290 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.799205 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.799476 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.800832 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.804901 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803545 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.805173 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.805173 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797306 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.797034 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797034 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797034 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796492 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796492 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.791608 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.791608 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788353 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.788895 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788895 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.791608 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.508202, 37.760130 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.760130 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.756873 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754973 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.491379, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775871 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775871 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.490349, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.490349, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.763658 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.756330 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.756058 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.502022, 37.747643 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741671 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741671 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.745743 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.491035, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.491035, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.744114 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743843 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742214 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742214 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742214 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733526 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733526 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.730539 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782383 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782383 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.781298 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.782926 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.774243 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.774514 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.774243 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763658 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.759316 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.757959 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.757959 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.782383 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.782383 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.775871 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.775871 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.773700 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.773700 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.782926 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769358 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769358 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.769358 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766915 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.767458 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766372 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.759044 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756330 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756330 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.755244 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766372 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766915 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766644 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766915 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.767458 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.767458 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.754158 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.756058 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.759316 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.759044 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.748729 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.744929 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741671 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.741128 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.741128 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.750901 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.751715 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.749815 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.747372 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.745743 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.745743 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736784 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.736784 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.751715 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.750358 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.750901 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.750629 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.749815 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746557 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.746557 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.744386 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.750629 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.751444 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.751444 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.751444 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741671 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741671 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741671 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.722121 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.806258 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.806258 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.805986 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.808699 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.807885 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.807885 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.808428 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.807614 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.800290 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.800832 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.804901 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804901 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804359 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804088 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.805173 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800290 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798662 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790252 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.794864 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.790795 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790523 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.788353 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.804630 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.804901 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805173 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804630 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804630 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804630 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797306 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799476 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799205 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799476 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.799747 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.802460 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.802731 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.802189 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.798933 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.799205 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795949 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795407 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.791608 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.788353 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808156 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.805986 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.807343 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807343 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.807071 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.802731 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.802460 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.802731 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.800832 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.800832 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.804901 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.802189 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.795949 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.795949 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.788353 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789709 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.795949 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.790252 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.790252 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790252 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.798933 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.799476 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.798933 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.798933 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.794864 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794322 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.791608 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.791608 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.791608 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789709 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789709 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789709 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.788895 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.790795 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828497 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828226 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.376366, 37.825514 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.824430 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.824158 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.825243 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.823616 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.367096, 37.825243 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.816022 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.371559, 37.816293 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.363663, 37.811683 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.811411 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810598 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.782383 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.774243 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.771258 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786182 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.781298 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.783469 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.782926 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.782926 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "count": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "count": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769358 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769358 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769358 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769358 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.767458 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.766372 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.762844 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.762844 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.769901 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.767729 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769086 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.769358 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768001 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.762844 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755787 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.759044 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.759044 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.756058 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.786453 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781298 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782926 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.786453 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786453 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773700 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769901 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.768815 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.763658 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.766372 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759044 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.759044 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.757959 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.757959 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.756873 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.757144 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.757144 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755787 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755787 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.754973 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.762844 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.762844 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.762844 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.760130 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.757144 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.756873 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755787 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.754973 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755244 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755244 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.744929 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742214 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739499 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739499 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.748729 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.746557 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744386 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.729724 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726737 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726466 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726466 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.749544 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.751444 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.751715 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.739499 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.741128 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743843 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.743843 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.751444 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750358 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.736784 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744114 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744114 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727552 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.726737 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755244 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.750358 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.740585 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743843 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743843 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.381172, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.376022, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727823 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713702 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713702 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.706912 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713430 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718319 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710443 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707455 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.707455 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718319 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718319 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.715603 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.713430 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710443 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713430 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713430 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.712615 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708541 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707998 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707726 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.716961 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712072 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713430 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.712887 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.712072 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.712072 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788895 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784283 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 41, "y": 99 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727823 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 41, "y": 98 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.829311 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.827413 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.825243 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.825243 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.823616 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.367096, 37.825243 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.368126, 37.822260 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.363663, 37.811683 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.811411 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810598 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727823 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 119, "y": 98 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 81, "y": 198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726466 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724157 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.724293 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.722528 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.726330 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724972 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724972 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.724972 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721985 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721713 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727823 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727688 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724157 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721985 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.721985 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.721713 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723343 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723343 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.722121 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.723343 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.724293 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.724701 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.723343 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721713 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719269 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724701 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722528 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721713 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724701 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.724701 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725244 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725651 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727416 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.727416 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.726466 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.726330 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.726466 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.724972 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727416 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.727688 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726194 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726601 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726737 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725244 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723343 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726330 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723343 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729317 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729317 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729317 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724157 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.722528 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722528 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.719269 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729317 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.368641, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.365551, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.717911 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.717640 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715196 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714924 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.715060 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714652 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713702 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713023 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713023 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710850 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710307 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.710307 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711393 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.465115, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.707047 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710850 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711393 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.715060 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710307 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.710307 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.705961 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.706097 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.706368 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707319 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.707455 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718319 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.713973 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.710443 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716825 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.711393 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708677 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709492 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717097 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716146 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715603 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.715739 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.715060 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.715467 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.717640 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.713973 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712751 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.712072 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709764 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718319 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708677 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.713023 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712072 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.711936 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.712751 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712751 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710307 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.708405 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.708541 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708134 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.708677 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708405 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707862 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.707726 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.708134 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707047 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.706504 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706233 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717097 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.717097 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715331 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715196 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712615 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.711393 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.712615 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.711936 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716825 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716961 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.714924 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.713430 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.712887 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.711936 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.709492 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710850 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.716961 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709764 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 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": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.538586, 37.832429 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.536182, 37.831751 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.532406, 37.831751 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831887 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.527256, 37.832565 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.527599, 37.829040 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.530174, 37.824972 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.523136, 37.831345 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831345 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.529659, 37.821853 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.514896, 37.831751 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502193, 37.836361 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.833921 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.833649 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.833649 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.833649 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832836 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.829446 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.829446 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.806665 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803952 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803681 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788488 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788353 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.482281, 37.790252 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792287 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.807478 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807207 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806122 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806936 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806665 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.803409 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799883 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800154 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.798527 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.797984 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.803681 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.803952 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.803681 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.802324 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.802053 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801511 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797984 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.797713 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.800697 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800697 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798120 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.800290 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.799340 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.799205 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.798120 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.797984 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804359 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803545 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.803681 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.802460 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.801511 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.800426 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.800290 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798527 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.797170 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.798662 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.795542 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795949 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.788895 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791202 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.791202 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.441769, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.800154 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.800290 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.799340 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.799476 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.800697 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796899 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.802324 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.802731 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.804901 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803409 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805308 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805173 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805037 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.801239 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800832 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799747 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799883 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799747 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799612 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.800832 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.797170 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.796899 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.797034 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796628 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.791608 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.791473 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795814 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794864 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.794864 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792287 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.791473 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788488 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.788760 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788760 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.788895 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.788760 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.790116 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.513008, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509747, 37.773700 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.510777, 37.771393 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.509747, 37.771665 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.771258 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779534 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.507687, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773564 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771529 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771665 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.503223, 37.771529 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.779263 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.771936 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.771936 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767865 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.510433, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.764065 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.760130 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.507343, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.764065 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.508373, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758637 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.756737 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.754973 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.760808 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.783469 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.783469 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781705 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.781434 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779534 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779534 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.488117, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.491379, 37.781705 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.779534 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783604 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.781705 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.775871 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.771936 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775871 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.489834, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.772207 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.772207 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.772479 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772479 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.784147 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.780077 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.784147 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.782383 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776278 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.776278 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.776278 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.774514 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.774243 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772479 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477818, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.480564, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.764337 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.496014, 37.762437 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.490349, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.496014, 37.760808 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.496014, 37.760808 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758909 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.755108 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.763658 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.763658 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757823 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.754023 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.754023 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.760130 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759994 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757823 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.757823 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.756194 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.755923 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754158 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.749136 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.747372 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745472 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.506657, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745607 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745472 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.745472 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753208 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.498760, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.753208 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.501850, 37.747508 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.499447, 37.747643 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.747643 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.743707 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.741671 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.498245, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735562 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735562 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735562 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735290 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.729724 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.751715 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.749815 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.749544 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.747643 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.747508 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.745879 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.745879 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.745879 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.747779 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.745879 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.490864, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.491207, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.746150 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.744250 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743978 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742349 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742214 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742349 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742214 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.742214 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.742349 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.738549 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738413 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736784 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742349 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.750358 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750222 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.746422 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.743164 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.733933 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733661 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733526 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733661 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.733526 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.733661 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.733390 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731761 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.729724 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733933 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734204 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734204 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729588 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.730403 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724157 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.724157 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.722528 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.726330 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.782926 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.782926 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773021 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773021 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.773564 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.782926 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.781298 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.786860 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.786182 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.781298 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.461681, 37.777363 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.773700 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773700 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773564 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.773836 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.774243 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774650 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.770850 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.770579 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764337 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763794 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764065 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764065 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.762166 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762166 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.759316 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.757959 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.759180 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.757008 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.756330 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756330 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.755244 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754158 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.764065 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.762166 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.462883, 37.762437 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764337 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.764337 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763658 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.764337 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758637 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.463055, 37.758637 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756737 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754837 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.756873 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.755244 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.784147 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.786860 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.786182 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.785232 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.774921 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.774921 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.774921 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.773021 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773564 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775871 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.775871 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.773836 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.773700 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.774107 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.771936 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771665 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.774107 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.774243 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.774243 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.785232 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.785232 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.779534 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783469 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783333 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783604 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.786182 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781705 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781298 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.781434 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779263 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.441769, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.777363 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.777635 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.774514 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.770850 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774650 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.774921 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.774921 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.774921 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773021 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.771258 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.778177 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.771258 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.771529 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.769086 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.769358 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.769358 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.768272 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.768272 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766372 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766372 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769358 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769901 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.768951 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.767051 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766915 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767458 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.764337 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.763387 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.760808 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758909 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.759723 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.757823 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.756466 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756330 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.754158 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.754023 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.768679 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766508 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.766644 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762437 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.769222 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.768951 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769222 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769086 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.767458 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762437 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762437 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.762437 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760808 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.754023 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.754023 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757551 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.755923 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.754158 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.759316 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.759180 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757823 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.757551 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.756058 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.755923 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.750494 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748729 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.748729 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.746965 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749136 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.749136 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473354, 37.743164 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741128 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743164 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.743435 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.743164 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.741128 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741128 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.741128 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.739635 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.739635 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.739499 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.750901 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.751715 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.749815 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751444 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751580 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747779 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.747236 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747779 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.747779 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746422 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.745743 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.745743 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.740449 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.739363 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.744114 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.743978 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.741671 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.743435 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736648 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.736784 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.732711 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.731761 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731218 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.731218 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731218 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731218 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733118 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.733118 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.728231 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733661 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732575 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731218 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724972 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724836 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.724972 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723343 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721713 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.744929 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.745879 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.751715 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.750358 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750358 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.752122 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.751715 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750629 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.749951 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.746422 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.746965 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.744386 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743435 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741671 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.741128 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.737463 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.736784 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736648 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.750901 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751037 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751037 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.746965 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.751037 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749408 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752122 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751851 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751444 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.749544 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.748729 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.747779 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744657 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.738549 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.738413 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.736784 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734204 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.733118 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727823 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727552 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728231 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.735562 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.733933 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.733933 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.733933 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.721985 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.733933 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733390 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.732575 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725787 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723343 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.721985 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.723343 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.724293 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.724701 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.723343 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.806393 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806393 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.807071 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806665 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.805580 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806665 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805715 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805715 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805715 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805580 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.805851 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806122 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.805986 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.808563 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808021 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808021 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.807343 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.808021 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.807885 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.807750 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.808292 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.807614 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.805715 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.806800 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.807071 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801511 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801511 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.801646 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.802053 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.802053 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.800290 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.797713 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800832 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.797984 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.805037 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.804901 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.804766 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804766 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804223 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804088 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.805308 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.802460 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802324 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802324 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.802189 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.803681 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803409 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.801646 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.801511 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.800426 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800290 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.798527 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.798798 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798798 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798662 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797713 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.796899 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790252 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.790523 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.790388 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.790116 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794864 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794728 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795271 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.793101 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.791473 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.790388 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.790388 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.791473 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790523 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.788353 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.804766 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.804766 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.804495 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805308 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.805173 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800154 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.798933 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799205 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799476 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799340 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799476 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.799612 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804901 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804359 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803681 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803409 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.802731 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.802053 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.801239 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803138 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.799747 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.799883 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.800832 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.799883 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800154 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800426 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800426 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.800426 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.798120 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.797306 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.795407 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.795271 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795542 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.795542 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.792829 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.790795 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789709 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.791202 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.790116 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.788353 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795949 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.795271 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.793101 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795542 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795407 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796492 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.795271 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791473 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.791473 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.788353 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808156 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.806122 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.807343 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807207 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.807207 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.803545 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.803409 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802324 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802189 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.803681 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803545 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.802731 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.800290 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.799205 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.799205 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.799340 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.800832 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.800697 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.798120 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.797034 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.797306 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.797034 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797306 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797170 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805037 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.803952 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.802324 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801239 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.799612 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.798120 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.797713 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.796899 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792829 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.794728 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.792829 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792287 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.790116 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.790116 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789031 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.788353 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.788488 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.794728 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.794864 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.794322 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.793101 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.793101 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.793101 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793101 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.789031 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.789031 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.788488 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792287 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.790252 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.790388 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790388 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790116 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789031 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.788895 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.798933 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.799476 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.798933 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793915 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796628 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.795000 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.794864 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791608 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.790116 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.791473 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790795 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790523 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790523 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790523 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790388 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789709 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791202 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.788895 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.790795 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790795 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.790523 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790523 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789709 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828226 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.826870 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828362 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828362 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.376366, 37.825514 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.824430 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.824158 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.823480 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.371387, 37.824565 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.829311 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827277 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.370014, 37.825243 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.825243 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.368984, 37.823616 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.366924, 37.825243 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.371731, 37.816022 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.371387, 37.816158 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822396 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821853 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.366238, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.371044, 37.813039 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813174 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.371044, 37.813174 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813174 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.811954 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.811954 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.364521, 37.811818 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.363834, 37.811683 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.811276 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810462 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810326 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.786453 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.786860 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.781705 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.787132 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.787674 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779534 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.775871 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.779263 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777363 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.776278 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.774243 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.773700 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.772207 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.771936 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773836 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.773836 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.773021 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.774107 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.771258 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.786860 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786182 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.781162 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.783333 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.782383 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.781705 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.783469 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.786453 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.786860 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.787132 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.787132 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.781705 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.783333 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.781162 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.781298 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778177 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.777635 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777635 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777635 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.777363 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.777363 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775871 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.773021 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.774243 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.778449 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.777635 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771936 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.770850 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.773836 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769358 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769222 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769358 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.767458 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767865 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767729 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767594 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.769358 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.768815 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767729 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.767865 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764337 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764337 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.762844 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.762844 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.770579 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.769765 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.763387 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.759723 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754566 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.423573, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.757144 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.767729 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768408 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768408 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.762166 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.763794 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.769086 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.769358 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.768137 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768408 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.762166 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.764065 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.759723 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.759044 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755787 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755108 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755651 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.759044 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.758909 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.755923 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.787674 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.787674 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.783333 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781162 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782926 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.781162 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.787674 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787674 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.787674 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.787674 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786453 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.787674 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.777363 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.773836 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.773564 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.771393 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.774650 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.774514 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771529 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771665 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.771665 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773700 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.782383 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.783333 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.779534 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.786182 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.783604 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.776278 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.777363 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776278 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776278 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776278 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779263 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.776278 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.773021 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768408 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.766372 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.762166 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.769901 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769765 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.768679 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.763523 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.763523 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.762166 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759044 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.759044 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755651 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754158 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757144 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755923 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.755244 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.754023 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.759451 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.757959 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.759723 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.756873 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.756194 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.757144 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.755923 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755787 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754837 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766644 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762437 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.762844 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769765 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769358 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.767729 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.766508 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.766508 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.762844 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.763387 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.759994 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.760130 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.759994 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.756873 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760808 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.757823 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.757959 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.757959 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.757823 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.757959 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.757551 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.755108 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.754973 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.755651 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755108 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755244 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755244 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751580 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751715 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.749408 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.744929 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.746965 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751851 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751715 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.751987 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.751851 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.751851 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.736648 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736376 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736376 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.739635 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.742214 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.742349 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.743843 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739635 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739499 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739363 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.737463 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.751987 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.752122 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.751987 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.749544 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.749136 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.745879 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.751037 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744250 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.739635 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.739092 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744114 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.744114 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744386 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744250 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741264 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.739499 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.739635 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.735562 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.731761 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.733526 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.733390 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733390 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733390 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.735562 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735833 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735290 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.735290 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722528 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724701 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.724701 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725244 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735833 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732575 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.735562 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.732575 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.735833 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.729860 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.729860 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727416 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725787 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.726330 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.726330 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.726466 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.724972 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.751037 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.749544 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753208 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.751444 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.751580 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.752122 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.750901 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.741264 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.739635 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.739635 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.739499 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738413 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743978 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.743843 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.739092 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.739499 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.739499 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.736376 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752122 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.751444 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.751037 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.749815 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.749951 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750358 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.741671 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737191 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.737191 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736784 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736648 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744250 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.743978 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.738006 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737463 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.739363 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737191 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734204 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727416 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.734204 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735290 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.735290 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731761 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727552 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.727688 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730403 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730131 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726466 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726601 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725244 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723343 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.726737 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726330 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.725244 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.723343 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731761 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731218 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.729724 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735833 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.733933 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.732847 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732847 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732847 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.730403 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729317 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729317 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727823 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725244 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724157 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.722528 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722257 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.755651 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.750358 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.387180, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.745879 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740585 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.383747, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.383404, 37.743843 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743843 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743707 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.741128 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386494, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.385807, 37.736648 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.381687, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738549 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.735833 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732575 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733118 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733118 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.384777, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.386494, 37.729588 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.385464, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734204 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.382030, 37.733390 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.379971, 37.733390 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379971, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.379627, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732711 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.381687, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.380314, 37.730539 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729317 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.728231 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.375851, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.375507, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.375164, 37.729860 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.373791, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.372074, 37.729860 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729860 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.368641, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.365551, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.717911 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.717640 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715196 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714924 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.715060 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714652 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713702 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713023 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713023 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710850 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710307 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.710307 ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711393 ] } } +, +{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.465115, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710850 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711393 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.715060 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710307 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.710307 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718319 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.713973 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.710443 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716825 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.711393 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708677 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709492 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717097 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716146 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715603 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.715739 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.715060 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.715467 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.717640 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.713973 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712751 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.712072 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709764 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718319 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708677 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.713023 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712072 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.711936 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.712751 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712751 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710307 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.708405 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.708541 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708134 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.708677 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708405 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707862 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.708134 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.708270 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717097 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.717097 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715331 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715196 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712615 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.711393 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.712615 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.711936 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716825 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716961 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.714924 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.713430 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.712887 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.711936 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.709492 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710850 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.716961 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709764 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.712072 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788760 ] } } +, +{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784147 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 238, "y": 197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 163, "y": 396 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484941, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.722528 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721781 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.483225, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.721374 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.721510 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.465200, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.723682 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721917 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721781 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723546 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721917 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.722121 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.721985 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.449236, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.723003 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720559 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720559 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720559 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.441339, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723275 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723682 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.722053 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723954 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.723954 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.723954 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721510 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.722528 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.721374 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427435, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720559 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720559 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719337 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.723954 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412844, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723275 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.720559 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.723682 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.723546 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723682 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723275 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721510 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.723003 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.722528 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722460 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.722053 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.716757 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.496443, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718387 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714856 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717300 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715942 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485456, 37.711189 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.717911 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.714584 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714449 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.717708 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716757 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715807 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.715942 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709288 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.484941, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717436 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.717300 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715196 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.717708 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714584 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714720 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713770 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714041 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714041 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.713091 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.712955 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.471209, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710918 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714449 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714313 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714313 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710375 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.710239 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.711597 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711393 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464857, 37.711597 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708745 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.705757 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468634, 37.707047 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714313 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.462282, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710918 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711393 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460222, 37.710103 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717708 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717572 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715942 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714856 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.711461 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710375 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.710307 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.705961 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.706165 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.459879, 37.706368 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.706572 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.706776 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707319 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.707387 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718522 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.718251 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.713905 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714041 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.710443 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714449 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.711461 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.711733 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.710918 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.712819 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708609 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.708881 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709492 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440138, 37.716146 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.715671 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.715671 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.715128 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.714720 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.712412 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711054 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714449 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.715467 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.717640 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.715128 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713498 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.713430 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714041 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709967 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710918 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712955 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.712887 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712819 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.712140 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431726, 37.711189 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.709492 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708881 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718115 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.717436 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.711733 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711868 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.711054 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718251 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.713702 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709288 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.708609 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712955 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.712751 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.712412 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711868 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713498 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712004 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712004 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.711597 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.712683 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.711054 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.712751 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.712140 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.710443 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.710375 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.708473 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.708473 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708202 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.708609 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708338 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707862 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.707659 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.707115 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.706912 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.708134 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707047 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.706504 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706300 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709288 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709017 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708270 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.717300 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717300 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715331 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715128 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712615 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712412 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.709967 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.711393 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.711461 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711325 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713770 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.712547 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.711868 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.716825 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.716961 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714652 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.714924 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.712412 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712140 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712412 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.712276 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713498 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.712887 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.712004 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.712004 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711597 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.711597 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.709492 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711189 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711189 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710850 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.718251 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387781, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.712751 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717436 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.712140 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 163, "y": 395 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832361 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831751 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.532320, 37.831819 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831887 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.527256, 37.832565 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.527170, 37.832429 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.523394, 37.831616 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.527685, 37.829040 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.530260, 37.825040 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.524424, 37.830463 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830328 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.523222, 37.831412 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.523222, 37.831345 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.529659, 37.821785 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.515326, 37.831751 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.514896, 37.831751 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.508802, 37.832972 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.836090 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502108, 37.836429 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.833853 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.833649 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.833582 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.833582 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835886 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.833107 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.833039 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832836 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.829514 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.829446 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.806665 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.803952 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803749 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.792219 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788353 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.482281, 37.790252 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792287 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792083 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.807546 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807207 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807478 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806054 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.806936 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.472067, 37.806732 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.803477 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.803545 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.801578 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.801036 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.467260, 37.799815 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800086 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.798527 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.460222, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.797916 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.803681 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.803884 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.801646 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801578 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.803681 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.803749 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.802257 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.802053 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.801578 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.801443 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801714 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.800154 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797916 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.797713 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.801036 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.800765 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.800697 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800493 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455072, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798120 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799137 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.799001 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451811, 37.799340 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.799205 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.798187 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.798052 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804359 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.803613 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.803409 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.804562 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803749 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803613 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.803613 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.802460 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.801511 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.802799 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.802799 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.800290 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.798527 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.797102 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.800629 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.799815 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.442713, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.798662 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442713, 37.798866 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.796695 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.796492 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.795610 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.795881 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790862 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447348, 37.790862 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447348, 37.790727 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788963 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791269 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.791202 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.803749 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441769, 37.803070 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805376 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.800086 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800222 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.800426 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.799273 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.799544 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.800697 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796831 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796831 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804427 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.804427 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802799 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.802392 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.802731 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.805376 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.804834 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803409 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.805241 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805105 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805105 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.801172 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.801307 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.800697 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799679 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799883 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799679 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.799612 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.800832 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.797374 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.797102 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.796967 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797034 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.796288 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.442198, 37.796153 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796560 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.796695 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.791541 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.791541 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.791676 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788149 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788488 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795949 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.795949 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.795814 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794864 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.794864 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794118 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.794118 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.792490 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.792626 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432756, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792355 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.791405 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792355 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.791473 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.788828 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788760 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791676 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789913 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.789709 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.788895 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.788760 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790116 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779873 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779873 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.779738 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.512922, 37.779059 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.512064, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.510004, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.510004, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773632 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.510777, 37.771393 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.771665 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.780009 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.507343, 37.779873 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.779738 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.780959 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.779738 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779534 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.499704, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.499533, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502966, 37.781095 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779466 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.506227, 37.779059 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.507944, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.507772, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773496 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771461 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.773564 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.503481, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503309, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.500563, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.779263 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771868 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.771868 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.771936 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767865 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.510433, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.510004, 37.764133 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.509146, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.508974, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.760130 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.507343, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.506227, 37.764065 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.763998 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762369 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.762166 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.508116, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.507944, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758637 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.756737 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.754905 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754769 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.760605 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.760605 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760605 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.781637 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.781637 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.492495, 37.783401 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.783401 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781773 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.492495, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492323, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781705 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.779738 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.779534 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.779534 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.779534 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.488031, 37.783808 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.491379, 37.781637 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.783672 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.783537 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.490606, 37.781773 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779738 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783672 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.489233, 37.781705 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.486830, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.488031, 37.779873 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.780009 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777838 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.493010, 37.777838 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.492151, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.775871 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.775803 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.771936 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.771936 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.772207 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492838, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775871 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.491808, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.776074 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.775939 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776074 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.772139 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489576, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.489405, 37.772411 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.772207 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.772479 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772479 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787335 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785843 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.783808 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484770, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783808 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.481852, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481680, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.782044 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484941, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.781909 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484770, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782044 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482710, 37.780077 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.784215 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.479792, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.782180 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.479277, 37.780416 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.780552 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.778245 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.484255, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.482367, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484426, 37.774514 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.774311 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484255, 37.772682 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.484083, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483740, 37.772479 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.478075, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477903, 37.776617 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.776617 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480564, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.764337 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.764540 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.495756, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.495928, 37.762505 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494726, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.490435, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.488718, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.488203, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.761012 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495928, 37.760808 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.495928, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.760876 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758841 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761012 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760876 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.757008 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.753412 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.495241, 37.755176 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753548 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492666, 37.753412 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761148 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761148 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.490263, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.489405, 37.753548 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.765083 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.485456, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.765083 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.481852, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.763658 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.477732, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477560, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.763658 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763387 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.486486, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486486, 37.761283 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.761419 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761555 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761555 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.759723 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757823 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.485971, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.753955 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.482710, 37.754023 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.479792, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479792, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.761419 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479792, 37.757755 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761691 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761555 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.760130 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759926 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.757823 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480993, 37.755991 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755855 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.480822, 37.754090 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480822, 37.753955 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.756194 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.476358, 37.755991 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754090 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.753005 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753140 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.750969 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.749340 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.749136 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.747304 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745404 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.506657, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747440 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.747440 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.747304 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745607 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.745404 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.745404 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.502279, 37.753005 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753208 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.753140 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.498846, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.753208 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.501936, 37.747575 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.499533, 37.747643 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.747643 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.743707 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741671 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.741739 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.739974 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.738073 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.737938 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502623, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500219, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.498331, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735562 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.735358 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735562 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.735358 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735358 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500734, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.734544 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734136 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.502279, 37.729724 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.499189, 37.731557 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499189, 37.731150 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.502451, 37.726398 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.753276 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.749815 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.749544 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.747575 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.747575 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.497473, 37.745947 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.497301, 37.745947 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.745811 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.494726, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.747779 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747779 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746082 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.745811 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.491207, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.747983 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.747983 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486658, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.746354 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.487688, 37.746150 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.744182 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743978 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.742349 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742146 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742146 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742282 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742282 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.742214 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.492666, 37.742349 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.740110 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.740245 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.738616 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.738345 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736716 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.742349 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744521 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.744250 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.742553 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742417 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742417 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.738752 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.485800, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.484770, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.476358, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750358 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750154 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.748526 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748661 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748526 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746422 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746625 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.485456, 37.742553 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742689 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.742689 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742825 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.742960 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.743164 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.742960 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741264 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733865 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733661 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733593 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733661 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.733526 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.734001 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.733729 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733729 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493696, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.730335 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.734136 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733933 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.489233, 37.734204 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.485800, 37.734136 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.483912, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483912, 37.734204 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734544 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734272 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729588 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.734408 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728027 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728027 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.730403 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.728842 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.724090 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.724225 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727077 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.726941 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484941, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.722460 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721713 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.483225, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.725855 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.726330 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.784215 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473269, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.782383 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473955, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.780687 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780687 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780552 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780823 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.469149, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.464685, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.465372, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.780959 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465372, 37.783130 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.467260, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773021 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.474127, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773021 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.777024 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775260 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469835, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773361 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.773632 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785165 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.462282, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785707 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.781095 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.460909, 37.781230 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.786860 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.786250 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453699, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783265 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783265 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.781434 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.781366 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.781162 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781095 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.781230 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461767, 37.777363 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.773632 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773700 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773700 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773496 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.773903 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773836 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.777431 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.777431 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.777024 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.777635 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.774243 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.774582 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.774718 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453871, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.770850 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765626 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.765626 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.470350, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.770511 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765897 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765762 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.763794 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764065 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764065 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.762233 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.759316 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.761826 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756941 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.756330 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.756262 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.755244 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.754226 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754090 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758298 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.758162 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760198 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.756669 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.756466 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.754769 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.754633 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.462454, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.764065 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.764133 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.762166 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462797, 37.762369 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460737, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.460909, 37.762505 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762776 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.764405 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.764337 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.763319 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.763319 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.763794 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763726 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.764337 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758569 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.758434 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.758434 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.463140, 37.758705 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756737 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.754633 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754905 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.461424, 37.756873 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755312 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.755312 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786453 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.784215 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.787471 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448206, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.782044 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.787335 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787200 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787335 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.786250 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.785232 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.787607 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.782723 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.778110 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.777974 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.778245 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.775396 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.449236, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.774921 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452326, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773021 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773021 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773361 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773564 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.449408, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778517 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.775667 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775871 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.775871 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.775667 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.779059 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.773768 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.773700 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.773903 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.773903 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.771936 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.774175 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.774243 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.439966, 37.786250 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785165 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.439795, 37.785300 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.785300 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.785232 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.783808 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.779466 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783401 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783333 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783130 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783130 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.781773 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783604 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.780552 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438936, 37.780416 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.780687 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434988, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.787674 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.784215 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.781095 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781705 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781298 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431898, 37.779873 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779263 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.777431 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.779331 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440138, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777635 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438593, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.777838 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.777838 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.438421, 37.777635 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.774582 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.770918 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.439795, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774718 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.774853 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773021 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.771258 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.778110 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.778245 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.775125 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778517 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431726, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.775396 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.771054 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.771190 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.769154 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.769290 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.769290 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.768340 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.768204 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766372 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766440 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769561 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.769697 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.764540 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.764405 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.765897 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.765762 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769901 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769154 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.770240 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770104 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769019 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447863, 37.767051 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447863, 37.766915 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.767254 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.767254 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.767119 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.767119 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.770511 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767526 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766305 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.763387 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763726 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.763726 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.761691 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761691 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.449064, 37.760876 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.753412 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447691, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760876 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.761826 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.760876 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.758909 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.758637 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761283 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.759926 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760198 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.759791 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.757755 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.757484 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.756398 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.756398 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755312 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755448 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.754090 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.753955 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.768679 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768815 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.768001 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.766508 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.766712 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766847 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767254 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767119 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762369 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.769154 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.768951 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.767390 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767254 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.767390 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.769222 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769086 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.767526 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.767390 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.765626 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764133 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762437 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.762437 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762505 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762369 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762369 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.762505 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432756, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.763862 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761691 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.761555 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760605 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.759044 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.755041 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.754023 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.754023 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757551 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.755923 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.755787 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755312 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.754226 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.760808 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.759384 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757755 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.757619 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.756058 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.755923 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.754633 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.754362 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.750494 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.472067, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748797 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748661 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.748797 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.748729 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.746965 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746761 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473440, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.470694, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.744996 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.750697 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.749136 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.749340 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.748797 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.748933 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.743096 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473440, 37.743164 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741196 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743096 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.743368 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.743164 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.471209, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.739024 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739159 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.737530 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475157, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736444 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.470350, 37.736376 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.468805, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.468462, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.741128 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741060 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740924 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.465372, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740924 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740924 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740924 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.741128 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740788 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738073 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738073 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.738073 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.739635 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.739431 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.750901 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.751715 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.749815 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751444 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751580 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747847 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.747236 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747779 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457132, 37.745268 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.747779 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746354 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.455587, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.745743 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.745675 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.740381 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.740110 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740245 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.460051, 37.739363 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.739159 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461424, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.744114 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.743978 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457476, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.743435 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.743096 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.743232 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.742825 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736648 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.736716 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475157, 37.734680 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.734680 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475157, 37.734544 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.732779 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.732100 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.731761 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734544 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734272 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734272 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734272 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.471209, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731150 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.731150 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.731150 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731014 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731218 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731285 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731285 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.734680 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.734951 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733186 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.733118 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.729928 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729928 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.728299 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.727212 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474642, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727212 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727212 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727212 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.465200, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.732236 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.460566, 37.735290 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734544 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.733661 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729928 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.730064 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460394, 37.730539 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733593 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.732575 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732575 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.732236 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.732100 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.457476, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457304, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.730878 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731218 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.455587, 37.731421 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724904 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724904 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.724972 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724361 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.724225 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.724225 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721917 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721713 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451982, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.749951 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745743 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452326, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.744996 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748933 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.745947 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752326 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.751715 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.750358 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750426 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.749136 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443914, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.442713, 37.750697 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.749951 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.747983 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447863, 37.746422 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746625 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.746354 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.747033 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443914, 37.748933 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443914, 37.746897 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.746625 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.744318 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743503 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744454 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.742553 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741739 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.449236, 37.740924 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.740788 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.737802 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.741060 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447691, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.737666 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.737463 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.736852 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.736784 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.736444 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736580 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.751037 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.750969 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.748526 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440138, 37.746897 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.745268 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439795, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751037 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.749611 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.749476 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751851 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.751376 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.751376 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431726, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433786, 37.749611 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.748661 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.747847 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.747847 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747033 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.746218 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.745607 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.745472 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744657 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431726, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.743639 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.743232 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.743096 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.740245 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.738616 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.738413 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.738752 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.739974 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.738345 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432756, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.736037 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.736784 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734204 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448893, 37.733118 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731421 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729928 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727823 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727620 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.728434 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728299 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.734001 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.733933 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.734544 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.734001 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443914, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724090 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723546 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723003 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.723003 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.723003 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719337 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721917 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.722121 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.721985 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.449236, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723003 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.723003 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720559 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720559 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.439966, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.439966, 37.728977 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728977 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.727755 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.439795, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730335 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.733933 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433786, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431898, 37.734544 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733458 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733390 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.733593 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.732372 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.732507 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.731285 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726805 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.725719 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725855 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725855 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725651 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725651 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.441339, 37.723343 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723275 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723682 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723546 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.722053 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.723343 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.724293 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724633 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.724701 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.724497 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723954 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723343 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.726330 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726330 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726126 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.723954 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.806326 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806326 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.807004 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806732 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.805580 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.806665 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.806597 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.805715 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805647 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.805783 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.805647 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808292 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.807207 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806122 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.805512 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.806054 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.808563 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808089 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808021 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.807411 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.807817 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.807750 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.808360 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.807614 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.806665 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.806461 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.805715 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.806868 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.807004 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801443 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.801511 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.801307 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.801646 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.801578 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.802121 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.801985 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.797645 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.797781 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800832 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.798052 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798187 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.805105 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.804969 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425203, 37.805173 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805037 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.804834 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804766 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804291 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804088 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.805308 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423487, 37.805241 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.804969 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.803342 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802392 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802324 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802324 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802189 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805376 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.803613 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803477 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.801578 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.801443 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.800493 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800290 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.798594 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798459 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798459 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.798662 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.799001 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.798798 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.798798 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798662 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797713 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.796967 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793101 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.790523 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.790320 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.790184 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.796424 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794864 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.794864 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794932 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794796 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.796153 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795271 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.795068 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.793915 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.793033 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.790862 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.790998 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.792083 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.791405 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.790455 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.790320 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.792355 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.791473 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790455 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790455 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.789506 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.804766 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.804766 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.802799 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.804495 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.805308 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.805241 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415934, 37.804155 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800222 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.798933 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.800154 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799273 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799137 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798323 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.798323 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797374 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799408 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.799340 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799544 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.799679 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.804969 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.804359 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.803749 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803749 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.803409 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.802799 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.802664 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.802053 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.804969 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.804766 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.802731 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.802935 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.801172 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.801239 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803138 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.799747 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.799883 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.799951 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.799951 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.800086 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.799001 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800493 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.800154 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.800426 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.798187 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.797306 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.797170 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.795339 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.795339 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.795339 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.795542 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.795407 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794389 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.792490 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.795542 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794864 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794661 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.792829 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.791676 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790795 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.790862 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.789641 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.789506 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.789370 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.791812 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790998 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.790862 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415590, 37.791269 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.790184 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.790116 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.789234 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.795949 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.795000 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795949 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.796153 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.795271 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.796153 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.795610 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795407 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796560 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.795271 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.792626 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.792355 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791473 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.791541 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.788285 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.791676 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410955, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410955, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.788828 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.789031 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808224 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.806054 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.807343 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807207 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.807139 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806936 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.806800 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.806597 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.806597 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803477 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803342 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802324 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802189 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803681 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803545 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.802731 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.802664 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.800493 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.799273 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.799205 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799340 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.800697 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.797170 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.800765 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.798120 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.797781 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.796967 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.797306 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.797034 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797306 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797170 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.805173 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.805105 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805037 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.803884 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.802324 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.802935 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.802121 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.802935 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801239 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.799679 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.798120 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.797374 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797509 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.797781 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.798323 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.796831 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.796695 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.795339 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.793033 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.792829 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.796017 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.794661 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.792490 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.792829 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792083 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.792219 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792287 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.792083 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.792083 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792287 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.790116 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.790116 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789234 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789031 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.789099 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.788353 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788149 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.789913 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.788285 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.792355 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788556 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.789777 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.788556 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.795881 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.796017 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.794661 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.793982 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792897 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.794796 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795068 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793304 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.793101 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.793101 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793304 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793101 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.790998 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.789709 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.788963 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.788963 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.788488 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792287 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.790252 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.790320 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.790320 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791269 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.399626, 37.791269 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.790862 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.789234 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790116 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789031 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.788895 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788285 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.798933 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.799544 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.798866 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797781 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.797034 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395506, 37.797170 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792490 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.792490 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793982 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.793033 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396193, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796695 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.795000 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795068 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.795000 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.794796 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395506, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.792490 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794389 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.794118 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793915 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.792626 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791608 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.790116 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789370 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.789234 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.789641 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.788488 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.791473 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.791812 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.792355 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790795 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790591 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790727 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.790591 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.790591 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.790523 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790388 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789913 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395849, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.789913 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.789777 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789777 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789777 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394133, 37.789709 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793101 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791405 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.792355 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789234 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393103, 37.788828 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.790795 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790727 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790523 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.790455 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789641 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828158 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.826938 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.829853 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.373447, 37.829785 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828362 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828294 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.376280, 37.825447 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.375593, 37.824430 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.375422, 37.824158 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823209 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823413 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.372675, 37.824023 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.373877, 37.823480 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.371473, 37.824565 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.829243 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827277 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.370014, 37.825175 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.369928, 37.825243 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.368898, 37.823616 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.366924, 37.825311 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.371817, 37.816022 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.371387, 37.816226 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822328 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821921 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.366323, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.366066, 37.819887 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.370100, 37.818328 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813039 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813242 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.370958, 37.813107 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813107 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.812022 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.811818 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.822192 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.364178, 37.820701 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.364779, 37.811954 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.364521, 37.811818 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.363749, 37.811683 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.364264, 37.811344 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810462 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.363405, 37.810394 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.786453 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.786657 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.781909 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.781773 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.787200 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425032, 37.785436 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421598, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.787607 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.782383 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425547, 37.779466 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423830, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.781909 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780959 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780077 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775803 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.776074 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.775803 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.779195 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.779331 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777363 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.774243 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.773768 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.772139 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772207 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.772004 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430353, 37.772004 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.772411 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425203, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.775939 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773768 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423830, 37.773836 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.770918 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.773089 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.774175 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.786793 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.785843 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.787064 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.787200 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.782180 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.781230 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.780280 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.780145 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.783333 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.783265 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.781705 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.783469 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780552 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.780687 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.787335 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.786386 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.787607 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.786860 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.787878 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.787132 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.787200 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.785843 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.783672 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.781637 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780552 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.782044 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.783401 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.781162 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.781298 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780280 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.778177 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.777838 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778381 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775260 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.777363 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.777363 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775939 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774582 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774311 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.774175 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.779331 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.778788 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.778449 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.779059 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.779331 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.775125 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.772004 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.770850 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.773903 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.774718 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.772411 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429667, 37.770240 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769290 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.769290 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.767526 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.767662 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767729 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767662 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767254 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.769765 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.768883 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767729 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767390 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767254 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428808, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764337 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764405 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.764540 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764540 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.762776 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.762776 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.770579 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.769765 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.770104 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.768340 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.767865 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764676 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421598, 37.763387 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.763048 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.761419 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.761148 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759791 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.757348 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.757212 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756398 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.754769 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754566 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421598, 37.761419 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.758705 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.757144 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.755041 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.753412 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.768611 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.768204 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.766644 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.767119 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768476 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768476 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765083 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.765083 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.763794 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.770376 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.769765 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.769086 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.769290 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.768069 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768408 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.762166 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763998 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410097, 37.762912 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.759791 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.758162 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.761826 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.758909 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.758841 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.757484 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.755787 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755176 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.753412 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755719 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416449, 37.755448 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.761826 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.758976 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.758976 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.761826 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410097, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759316 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.755923 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755448 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787471 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.785436 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.784147 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787607 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786657 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.786386 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.785843 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.783401 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.783469 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781162 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782926 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782723 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782723 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.781434 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.781230 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787607 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787607 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.787674 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786386 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.784215 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.787878 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.786182 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.780280 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.780416 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.781773 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.780687 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.776617 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.773836 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.773496 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772547 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.771461 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.774650 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.774582 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771529 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.779263 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.772004 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771665 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.771665 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773632 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785707 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785707 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785300 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394133, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.784147 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.779466 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.783265 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.779534 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.786182 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.391901, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.780687 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.783604 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.389498, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.776278 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775396 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.777431 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777024 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.777024 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.777024 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776278 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776278 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776278 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.776074 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773089 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779263 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778110 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.775260 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.771122 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.768408 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.766305 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.764540 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.762166 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770240 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.769901 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769765 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.768747 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.767458 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.765897 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766305 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.763523 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399626, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.763455 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.762166 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.761826 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.759044 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757484 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.756194 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755719 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754158 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757484 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757144 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755855 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.755176 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.753955 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.759655 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.759655 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759519 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.759451 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.759655 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759723 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756873 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756126 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.754362 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754498 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.757348 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.757144 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.755923 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755719 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754837 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.754837 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.766508 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.766372 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766644 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762437 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.762844 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.770511 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.766847 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769697 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769290 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769561 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.769019 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.766576 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.766576 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.762844 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.764337 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.764405 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764405 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.762912 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764133 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.763319 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.761283 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761148 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.759926 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761419 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.760130 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.760062 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.759994 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.759994 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.755923 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.754769 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.754633 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753548 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753412 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.753412 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754633 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.756805 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.757619 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.755448 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757755 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760605 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757823 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.757755 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758162 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.757551 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.755108 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.754973 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.755651 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755041 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.755312 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.755244 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427435, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.749340 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.749136 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746490 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.744929 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.746965 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.746761 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425203, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.751851 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.743503 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742825 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742146 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.742214 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.742146 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.736648 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736444 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.736309 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427435, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737123 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.737123 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.742146 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.742282 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.743775 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742417 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.742282 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.741060 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.742417 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.742417 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.742417 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739635 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739363 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.423830, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.737463 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.736173 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740245 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752326 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752190 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.752326 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.752190 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.750290 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.750629 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.749476 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752326 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.748661 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.747983 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.748526 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746897 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.746625 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.746218 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.745879 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752598 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.750969 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749204 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.749204 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752598 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744250 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.739295 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.739295 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.739024 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.739092 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744182 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.744114 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.744318 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744250 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.741196 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.738752 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.737123 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.736037 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733186 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.733458 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.733458 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.733729 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.730607 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429667, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429667, 37.730403 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.728706 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428808, 37.728434 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.734001 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735901 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.735223 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.735223 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.735087 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728706 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.728706 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724701 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.723954 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.722460 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721510 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.721374 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427435, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.724633 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.724701 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.724701 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725040 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725176 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725583 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.719337 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.719337 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.735766 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.735087 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.734951 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732575 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.734951 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.732779 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.732847 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.732507 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.729113 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.728977 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.728977 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.728842 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.734680 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734680 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.735766 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734951 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.733593 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.729860 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.729928 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.727416 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.727348 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.730878 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.725855 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.726398 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.726330 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.726466 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.724972 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412844, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.749476 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.753005 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753208 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751376 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744725 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.751851 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.752122 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.750697 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.750697 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.746422 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742825 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742825 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.741331 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.739635 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.739499 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738345 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.737938 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.741060 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743911 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.743911 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.742282 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.738752 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.739092 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.739499 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.736376 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.752190 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.752122 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.752326 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.751444 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397051, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.749883 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396193, 37.750019 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.752326 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.747304 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395849, 37.747236 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746150 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.745947 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752598 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750358 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.741671 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.736309 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.737191 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.737123 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.736173 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736852 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736648 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.744250 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744046 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.740653 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.742960 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.742960 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742689 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742689 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742689 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742689 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.742417 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.391386, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.738073 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737530 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737530 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736309 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736309 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.739295 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.740110 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739974 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739974 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737191 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737938 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737938 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734204 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.732372 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.733186 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.733050 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731285 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730064 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.728027 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727416 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.734544 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.734136 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735223 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.735290 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727484 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727755 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727620 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728434 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730335 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730199 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.729113 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.729113 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726262 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726126 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726534 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726669 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725176 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.723343 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725040 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.726805 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719337 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726330 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.725312 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724090 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.723546 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723275 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.721510 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721510 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719337 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733186 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731964 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395506, 37.731761 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731150 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.727891 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735766 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735087 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734136 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734001 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.733865 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.733865 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732236 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732236 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732236 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732236 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.732372 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732236 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.732847 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.730403 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.729385 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727891 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727891 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.723003 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.726941 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.725651 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725447 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725447 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725447 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725312 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.724157 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.722460 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722596 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722460 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.721985 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721374 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.727077 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.386751, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.755651 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387609, 37.753140 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.750290 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.748933 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387266, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.745811 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.745743 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387094, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.386408, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740517 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383661, 37.742553 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743911 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743775 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383146, 37.743707 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.741128 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.741060 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.384520, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.384520, 37.740653 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386494, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.386236, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385893, 37.736580 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.739974 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.382631, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.382803, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737666 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.384176, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.381773, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738752 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738616 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.380743, 37.738752 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379198, 37.737666 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.736987 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.735833 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387266, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.732575 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.732372 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733118 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.386065, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385035, 37.733186 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.383490, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383490, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734680 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.384863, 37.733050 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384777, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.729520 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.385378, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.386236, 37.729520 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727348 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.382631, 37.730131 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729385 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734136 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734001 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.382116, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.379971, 37.733458 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379885, 37.732507 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.379713, 37.732372 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.378941, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.377138, 37.732711 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.381687, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.730742 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.380314, 37.730539 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729385 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.376966, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.728231 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.386751, 37.726126 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727077 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.375851, 37.731964 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.375593, 37.731964 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.374048, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.729860 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730199 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.373705, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.372074, 37.729860 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.371817, 37.729860 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729113 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.368727, 37.725312 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.367868, 37.725312 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.365551, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.365465, 37.727891 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727348 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.716757 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.496443, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718387 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714856 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717300 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715942 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.717911 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.714584 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714449 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.717708 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716757 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715807 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.715942 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717436 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.717300 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715196 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.717708 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714584 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714720 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713770 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714041 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714041 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.471209, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714449 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714313 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714313 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714313 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.462282, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717708 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717572 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715942 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714856 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718522 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.718251 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.713905 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714041 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714449 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.440138, 37.716146 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.715671 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.715671 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.715128 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.714720 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714449 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.715467 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.717640 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.715128 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713498 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.713430 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714041 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718115 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.717436 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718251 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.713702 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713498 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.717300 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717300 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715331 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715128 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713770 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.716825 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.716961 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714652 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.714924 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713498 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.718251 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387781, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717436 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788760 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793101 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775125 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778517 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784215 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 477, "y": 395 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 326, "y": 791 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832395 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831785 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.532363, 37.831819 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831887 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.527256, 37.832599 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.527213, 37.832463 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.523437, 37.831650 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.527685, 37.829074 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.530260, 37.825040 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.524424, 37.830463 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.524381, 37.830362 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.523222, 37.831412 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.523265, 37.831345 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.529702, 37.821819 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 792 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.718692 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483096, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483225, 37.718624 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720729 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719643 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479920, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721272 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721068 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474599, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469964, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465243, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463441, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720050 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461123, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720050 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457261, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451081, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.720390 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.721001 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.719846 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720559 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720559 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721272 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431083, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429452, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.721272 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720390 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.718896 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.718760 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405076, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720661 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721136 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.720797 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719914 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.716757 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716520 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496486, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716248 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714856 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.714551 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.711189 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718488 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478719, 37.717945 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480178, 37.714584 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714483 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477088, 37.717708 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477431, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716791 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715841 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.715976 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709322 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.709118 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474256, 37.717436 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474599, 37.715908 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.715908 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715229 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.715026 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.714822 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472367, 37.717742 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714618 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714754 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714143 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713770 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713600 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714075 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714041 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.713091 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.712989 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471251, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471337, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470994, 37.710918 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470050, 37.714415 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714449 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.714313 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.714279 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714347 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467389, 37.712514 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469449, 37.710375 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.710273 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467217, 37.714211 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467132, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.711631 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711427 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465072, 37.711835 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464900, 37.711631 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708745 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.705757 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468634, 37.707047 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714347 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462325, 37.713193 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.711291 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.710918 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461553, 37.711427 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.711291 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.710137 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.717742 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.717572 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.715976 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.715026 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.714856 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713193 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458892, 37.711495 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714143 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.713973 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455974, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710375 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454772, 37.710307 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461295, 37.705995 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460694, 37.706165 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459879, 37.706368 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.706606 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706810 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.707353 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.707421 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.718522 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448592, 37.718285 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716248 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716044 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453141, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.713939 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714143 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714075 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448335, 37.710477 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710205 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442670, 37.714686 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714483 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.711461 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.711733 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.710952 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.712514 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.712853 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453313, 37.708643 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452197, 37.708881 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709492 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716520 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716452 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.716655 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440181, 37.716180 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.715671 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439322, 37.715705 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.715128 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437606, 37.714754 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.712446 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711088 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.711156 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437949, 37.710205 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714449 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.715501 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.716112 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432284, 37.715128 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713498 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.713464 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.714143 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714041 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709967 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710952 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712955 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.712921 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712819 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.712140 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.711223 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.709492 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708881 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432456, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430139, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718149 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428336, 37.717470 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.711733 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711868 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.711088 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425675, 37.718285 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.713702 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709322 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.708643 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712989 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.712785 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.712412 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419410, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711868 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710612 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713532 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.712038 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415891, 37.712004 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.711631 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.715026 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714415 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414432, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.712717 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412801, 37.711054 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712751 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.712174 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410483, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.710748 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.710477 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.710375 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709865 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420354, 37.708473 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.708507 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.708202 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.708643 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708372 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707896 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.707693 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.707149 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415547, 37.706946 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.708134 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707081 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.706538 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706300 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709322 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709051 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708270 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.717300 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716655 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716587 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.717063 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.715331 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.715162 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712649 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407393, 37.712446 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.710205 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409539, 37.710001 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.709933 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.711427 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.711495 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711359 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.713804 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.712581 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.711902 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716112 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400184, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.716995 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.714686 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714822 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.714958 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401986, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.712446 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712174 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712446 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.712276 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403874, 37.710612 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713532 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.712887 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.712004 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400699, 37.712004 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711597 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.711631 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709865 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405076, 37.708847 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404647, 37.709526 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711189 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711223 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394776, 37.710884 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.718251 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387824, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.712785 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717470 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.712140 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 791 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.515368, 37.831751 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.514939, 37.831785 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.508802, 37.833005 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502408, 37.836124 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502151, 37.836429 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.833887 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493825, 37.833683 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493997, 37.833616 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.833616 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835920 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.833141 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.833073 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832836 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484040, 37.829514 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483525, 37.829446 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.806665 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803952 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803749 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.792219 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788454 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788387 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482281, 37.790252 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792321 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480950, 37.792083 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.807546 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807241 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.806563 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807478 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806088 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.806936 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472110, 37.806732 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.803477 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.803579 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801036 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467303, 37.799849 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.803036 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.802901 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.800120 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460351, 37.798527 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460222, 37.798425 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.797950 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457776, 37.803681 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456832, 37.803918 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.801646 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456746, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456403, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.803850 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.803681 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.803749 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.802291 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.802087 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.801578 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.801443 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801714 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.800188 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.797882 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797950 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.797747 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.801070 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801002 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454085, 37.800765 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.800697 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800527 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455115, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798154 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453399, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799137 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452540, 37.799035 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451854, 37.799374 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.799205 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.798187 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.798052 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804359 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.803613 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445159, 37.803409 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443871, 37.804562 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.803782 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803613 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443442, 37.803647 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.802494 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.801545 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.802833 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.802833 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.800392 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.800324 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.798527 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.798425 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.797136 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.797611 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.800629 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.799849 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.800052 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442756, 37.800052 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.798662 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442756, 37.798866 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451682, 37.796695 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451510, 37.796492 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.795610 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445331, 37.795915 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447348, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447391, 37.790727 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447047, 37.788963 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791269 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.791202 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442584, 37.803782 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441812, 37.803070 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805410 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441297, 37.800120 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800256 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439666, 37.800459 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439322, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.799306 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.799544 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.800731 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796865 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796865 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804427 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.804461 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802833 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.802630 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.802392 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.802731 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.805410 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.804868 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803443 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.805274 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805139 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805105 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.801172 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.801307 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436490, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.800731 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.799713 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.799883 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799713 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.799612 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435632, 37.800832 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.800934 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434516, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434516, 37.800934 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796797 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.797407 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.797136 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.796967 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797034 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432284, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441983, 37.796322 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442198, 37.796187 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438893, 37.796594 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.796729 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441297, 37.791575 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.791541 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.791710 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788183 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.791778 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788522 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795983 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.795949 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.795848 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794898 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436662, 37.794898 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794118 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.794152 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.792524 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433400, 37.792660 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792728 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.792728 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792355 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.791439 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.791507 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788454 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.789336 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.788828 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791710 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.789913 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.789743 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.788929 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790116 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509961, 37.779907 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779873 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.779772 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.512965, 37.779093 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.512064, 37.779025 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.779025 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.510304, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.510047, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.510004, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773666 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509875, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.510777, 37.771427 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.771699 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.779975 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.780043 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.507386, 37.779907 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504125, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504125, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.779738 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.779840 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.780993 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504125, 37.779772 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499704, 37.784995 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499576, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503009, 37.781095 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500691, 37.779466 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.506270, 37.779059 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775362 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503610, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.507987, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.507772, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.773530 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.507043, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771495 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505670, 37.773564 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503610, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503524, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503309, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771766 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.779161 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500606, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499833, 37.779297 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500348, 37.771868 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500091, 37.771902 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.771970 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.510304, 37.767865 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.510476, 37.767356 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.510047, 37.764133 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509189, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509017, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.508759, 37.760164 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.507386, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.506270, 37.764065 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.506099, 37.764032 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762369 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.762200 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.508116, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.507987, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.506013, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758671 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505755, 37.756771 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505584, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.754939 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754769 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502580, 37.760639 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502580, 37.760605 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760775 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499146, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499146, 37.760639 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.779432 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496400, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.781637 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.781637 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492537, 37.783435 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492452, 37.783435 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492537, 37.781603 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492323, 37.782010 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781739 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.781535 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493310, 37.779704 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779738 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779534 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492280, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.488074, 37.783808 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.491422, 37.781671 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.783672 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.783571 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.490606, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.490048, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779738 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.779975 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783672 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489018, 37.781875 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489276, 37.781739 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487130, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486873, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.488031, 37.779873 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487817, 37.780009 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.497430, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775769 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493010, 37.777838 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492194, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.775905 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.775803 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493138, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.776040 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.771936 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.771970 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.772241 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492881, 37.772106 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.777737 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775905 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.491851, 37.776040 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.776108 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.775973 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776074 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.772173 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489619, 37.772377 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489405, 37.772411 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.772241 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.772479 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772513 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.785877 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.783808 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785673 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783808 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481894, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481680, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.782044 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484727, 37.781942 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780247 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.779975 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782078 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482710, 37.780077 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481380, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478719, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478461, 37.784249 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.782214 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479277, 37.780450 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477517, 37.782282 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.780586 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.778279 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484555, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484384, 37.776176 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482409, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484426, 37.774548 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484212, 37.774311 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.772682 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484083, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483783, 37.772513 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480264, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478118, 37.776515 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477903, 37.776651 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475972, 37.776617 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480607, 37.772648 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.772852 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478461, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.764371 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.764540 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495799, 37.762607 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495971, 37.762505 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494726, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.764846 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.490435, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.488718, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.488246, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.761012 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495971, 37.760842 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495971, 37.760775 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.760910 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.760775 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495713, 37.759146 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758875 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761012 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760910 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.757042 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495456, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495284, 37.755176 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753548 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492452, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492666, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489705, 37.761182 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761114 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761182 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.491593, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.490263, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489448, 37.753582 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487302, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.765117 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.765117 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481852, 37.765321 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.765185 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.763149 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765185 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480264, 37.763692 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477732, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477603, 37.765524 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477260, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.763692 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763421 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486529, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486529, 37.761317 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761385 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.761453 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481380, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761589 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761555 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.759723 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481122, 37.757857 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486014, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.753785 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483869, 37.753989 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482753, 37.754057 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483010, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.761521 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.761453 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.757755 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.761657 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477088, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761385 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.761792 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.761725 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761589 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.760164 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759960 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.757857 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480993, 37.756025 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755889 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.754124 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.753955 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.754328 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.756228 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.755991 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.753921 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754124 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.506356, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750935 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.753039 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505584, 37.752903 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505498, 37.752835 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505326, 37.752835 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504468, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753140 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751003 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.749340 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505069, 37.749170 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.747338 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.507558, 37.745438 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.506700, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747474 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.747440 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.747304 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504983, 37.745607 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.745438 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504811, 37.745438 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502322, 37.753039 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753242 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500176, 37.753140 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.498846, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.498031, 37.753208 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747406 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.501936, 37.747575 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747542 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499533, 37.747677 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.747643 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.743741 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504725, 37.741840 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504554, 37.741671 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.741773 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.740008 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505326, 37.738073 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.736003 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.737972 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736139 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504125, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502623, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500219, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.498331, 37.741976 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742112 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735562 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735528 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.735392 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735596 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.735358 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735392 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500734, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.498975, 37.734136 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502322, 37.729724 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499232, 37.731591 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499232, 37.731150 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726771 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502451, 37.726398 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495112, 37.753310 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495542, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495027, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.749815 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494855, 37.749578 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.497430, 37.747609 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.747575 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.497473, 37.745947 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.497301, 37.745947 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.745845 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494769, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.747779 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747949 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747813 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746082 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.745845 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.491207, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.748017 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487817, 37.747983 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486658, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487817, 37.746354 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487688, 37.746150 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494683, 37.744216 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743978 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.742349 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742180 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742146 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742282 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494340, 37.742112 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.742248 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492709, 37.742349 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.740110 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.740245 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.738616 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494082, 37.738379 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494168, 37.736750 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.736546 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.742349 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487645, 37.744521 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.744284 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.742655 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.742587 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742417 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487388, 37.740754 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487216, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487130, 37.738752 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485585, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485843, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484770, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483439, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748288 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481294, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481551, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750392 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750188 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.748560 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476230, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748695 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.748526 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.748288 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746456 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746659 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745234 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485456, 37.742553 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742689 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.742655 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.742791 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481208, 37.742723 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486100, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480435, 37.742859 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.742960 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.743164 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.742960 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741297 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733899 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496829, 37.733695 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496829, 37.733593 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496572, 37.733695 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496657, 37.733526 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.734035 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.733729 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733763 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493696, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.732949 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.730335 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.491593, 37.734136 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.491593, 37.733831 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733967 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489276, 37.734238 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734374 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485843, 37.734136 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483954, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483954, 37.734204 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482238, 37.734544 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734272 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729622 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486272, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734646 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.734408 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477260, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728536 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.728027 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.727993 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728061 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.730437 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.728876 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.724123 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484899, 37.724225 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727111 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.726975 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.718692 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483611, 37.722766 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.722494 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482152, 37.721747 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483096, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483225, 37.718624 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720729 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727178 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.726907 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.725956 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.725855 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725956 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.726330 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719643 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479920, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.784249 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473269, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472539, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784588 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.784588 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.784452 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.782383 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473955, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.782485 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782485 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471166, 37.782689 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.780721 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780518 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472196, 37.780789 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780687 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780586 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470822, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780823 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469149, 37.784656 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467046, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466702, 37.784452 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464728, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469020, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.782689 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467647, 37.780993 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.782892 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.782892 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.783130 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467303, 37.780789 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471938, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.776855 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470307, 37.776990 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474170, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472196, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.777058 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.777194 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464986, 37.775260 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464814, 37.775362 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469835, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773361 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466102, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.773462 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773462 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.773632 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464471, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784724 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.785165 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462282, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785707 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.783231 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.783096 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.781128 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459836, 37.783096 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781061 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460952, 37.781264 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.786894 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456832, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.785673 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785606 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456660, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455201, 37.786250 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453742, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783265 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783265 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.781875 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.781434 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.781366 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.781162 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781095 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.781264 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781535 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779161 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464042, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.777262 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776990 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463956, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463784, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461767, 37.777397 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464128, 37.773666 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.773734 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.773734 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463698, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773530 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.773937 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773836 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.777465 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.777465 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.777058 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455373, 37.777635 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455029, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458291, 37.774412 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.774277 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454858, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.774616 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.774751 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453871, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454171, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.770850 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765626 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765456 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.765728 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.765660 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470350, 37.762064 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468934, 37.770545 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765897 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765762 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762064 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.765999 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466531, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.764303 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.763794 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764099 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764099 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466702, 37.762233 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762132 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761928 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.761928 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.759316 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.761792 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470565, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.759146 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.759146 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756975 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.756364 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.756296 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.755244 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.754260 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754124 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469535, 37.761996 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469535, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758298 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470050, 37.758196 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760232 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.758535 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.758535 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758535 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.756669 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465672, 37.756500 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.754803 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.754633 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462454, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461896, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464299, 37.764099 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464042, 37.764167 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.762335 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464128, 37.762200 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462840, 37.762403 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764303 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.766135 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460737, 37.762742 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460523, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460952, 37.762539 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762776 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457948, 37.765999 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.764439 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458034, 37.764371 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.763319 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.763319 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.763794 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456746, 37.763726 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.766203 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454686, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.764337 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758603 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.758467 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.758434 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463140, 37.758705 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461896, 37.757721 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756771 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463784, 37.754667 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754905 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461467, 37.756907 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461295, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.754464 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755346 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.755312 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786487 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451940, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.784215 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448506, 37.787505 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449880, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448249, 37.784995 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453055, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.781603 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.782044 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447991, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787200 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.786250 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.785232 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446189, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446189, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443614, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.787607 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447305, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.782723 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782960 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453485, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451682, 37.778110 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.778008 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778347 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.778245 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.775396 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449279, 37.775362 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453141, 37.774921 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452369, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451081, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773361 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773598 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449450, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778754 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.778551 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.778754 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.777533 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.778754 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.775667 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775905 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.775905 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.775701 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.778958 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443614, 37.779093 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443185, 37.777262 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443442, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.773802 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447305, 37.773734 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.774005 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.774073 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.773937 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.773937 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.771970 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.774073 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.774209 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.774277 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774412 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.787980 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440009, 37.786284 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.785165 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439795, 37.785334 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439752, 37.785300 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.785266 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.785402 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.783842 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.779500 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783435 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.783367 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.783164 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783164 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.781603 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439065, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783638 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438807, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.780552 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438979, 37.780450 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437177, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.780721 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.785945 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435031, 37.785809 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.788047 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.787708 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433143, 37.786148 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786080 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785809 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784249 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784724 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.781095 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.780925 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432714, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432628, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781739 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781535 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781332 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431941, 37.779873 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779297 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779161 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.777431 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440181, 37.777533 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.777635 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438593, 37.777804 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777737 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438293, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438421, 37.777669 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.774582 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770749 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440267, 37.770918 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.774718 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.774887 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.771291 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.778144 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.778279 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.775159 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431684, 37.778551 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.778347 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.775430 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432456, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437091, 37.771054 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436748, 37.771224 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.771766 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453055, 37.769154 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.769324 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.769324 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453485, 37.768340 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.768238 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766406 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766440 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769595 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.769697 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766813 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.765524 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.765321 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.764540 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.764439 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.765931 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.765762 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.764914 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449708, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769935 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769154 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.770240 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.770104 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769019 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447906, 37.767085 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447906, 37.766949 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.767254 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.767288 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446446, 37.767153 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.767153 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.770342 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445331, 37.770206 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445159, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.770511 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767526 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.767356 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766305 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446103, 37.764303 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.763014 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.765456 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764507 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.764507 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.763421 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.763726 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.763726 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449193, 37.761725 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761691 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449064, 37.760910 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447691, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.760910 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.760876 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.758942 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.758807 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758671 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445846, 37.758671 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761317 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444043, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445331, 37.759926 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.759892 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444472, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.761792 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.761657 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760232 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.759791 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.757789 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444472, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444043, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444129, 37.757484 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443442, 37.756432 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.756398 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.755346 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755482 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.754124 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.753989 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.768679 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768815 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.768035 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439494, 37.766508 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 37.766813 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438293, 37.766712 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766847 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767288 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767153 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441039, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.762064 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762403 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.769188 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.768951 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.767390 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767288 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.767424 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769392 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.769222 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769120 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.769120 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.767526 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.767390 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.765626 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764167 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.762607 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.762471 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.762471 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762539 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762403 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762369 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.762505 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.763896 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.763964 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761725 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.760571 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438293, 37.761589 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 37.760639 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760775 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.760707 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.759044 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440438, 37.755041 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.754057 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.754023 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.757551 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.755957 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.755821 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755346 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.753514 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.754226 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.760842 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.760842 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.759384 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.759146 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.757789 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432885, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.757619 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.756092 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.755957 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.754633 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.754396 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.750528 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472067, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750799 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474084, 37.748797 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474084, 37.748661 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.748831 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473826, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.748729 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473912, 37.746965 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746761 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.745098 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473483, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748899 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470737, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470479, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470307, 37.745030 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749035 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749102 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466531, 37.750697 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.750867 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466445, 37.749170 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.749340 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.748831 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467046, 37.748967 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475457, 37.743096 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743062 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473440, 37.743198 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741501 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741196 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471423, 37.743062 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743130 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470307, 37.743402 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.743164 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471209, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.739024 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.739193 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.737564 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475157, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736478 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470393, 37.736376 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470050, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468805, 37.741433 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468462, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.741162 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741094 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466102, 37.741026 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.740924 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740958 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740958 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740924 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.741162 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.740754 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740788 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738107 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738107 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.738073 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466960, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466960, 37.739601 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.739668 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.739465 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.750935 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458377, 37.751715 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456918, 37.749849 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.751478 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751614 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.751342 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458892, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748288 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.747847 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.747270 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.747813 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.745370 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457175, 37.745302 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.747813 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746388 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455587, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455544, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453828, 37.745777 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.745709 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.740415 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463698, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463441, 37.740110 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740245 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460093, 37.739363 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740211 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.740076 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460008, 37.739193 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461467, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461295, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.744148 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456403, 37.744012 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.741637 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.743469 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455459, 37.743096 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455201, 37.743232 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.742859 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.741976 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736682 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.736750 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.734510 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475200, 37.734680 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475200, 37.734544 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474513, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.732779 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.732473 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.732134 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473826, 37.731795 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471509, 37.735053 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471852, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471852, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471938, 37.734306 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734306 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.734306 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.734917 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471251, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.731184 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.731150 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474341, 37.731184 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731048 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472453, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471852, 37.731252 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731285 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731319 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469792, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.734951 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468076, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733186 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465501, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.729962 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469449, 37.729928 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469106, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728400 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467561, 37.728299 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.727246 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474856, 37.727178 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474685, 37.727178 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721272 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721068 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474341, 37.721340 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474599, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.721476 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727246 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.727212 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727212 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469964, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465243, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464557, 37.732270 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463956, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460566, 37.735324 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459664, 37.734544 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734374 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.733695 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729962 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.730064 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460437, 37.730539 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.733593 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.732609 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732609 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457776, 37.732236 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.732100 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.730708 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.731116 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457304, 37.731116 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.730878 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731252 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455630, 37.731455 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726024 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.726024 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461381, 37.724938 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461381, 37.724904 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.724972 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463441, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720050 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461123, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724395 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.724259 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458291, 37.724259 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.723784 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723445 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723445 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454000, 37.723445 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720050 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457261, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.721917 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721747 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453055, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452025, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.751206 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.749951 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748899 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745777 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452369, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452111, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.744996 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748933 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.745947 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446103, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446189, 37.751749 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.750392 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445760, 37.750426 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.752089 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.751681 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.749306 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.749136 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442756, 37.750697 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.749951 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.748017 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447906, 37.746456 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746659 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.746354 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444901, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444901, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.747033 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444215, 37.747134 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.748967 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.746897 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.746659 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.744352 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743503 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451167, 37.743062 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744487 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450652, 37.742587 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741739 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450480, 37.741840 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449236, 37.740958 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.740822 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449193, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451510, 37.737802 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740211 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450480, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446017, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.741094 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447991, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447734, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.737700 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.737463 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445846, 37.736852 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.736784 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.736478 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736614 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442584, 37.752496 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.752292 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441640, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.751037 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440524, 37.750969 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.749306 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437606, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438378, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442498, 37.748526 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440181, 37.746931 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.745268 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.745234 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.751071 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.749645 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.749476 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.752903 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.752089 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751885 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.751376 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434001, 37.751206 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.751376 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751342 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.749611 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.748695 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.747847 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.747881 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.747066 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.746252 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.745641 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.745472 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744691 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.743605 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437520, 37.743639 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.743266 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.743096 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.741840 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.740279 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740211 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436919, 37.738616 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436662, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.738311 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.738413 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.738786 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.740008 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.738345 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.736071 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.736818 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734204 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448936, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731455 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451425, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451253, 37.731455 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451253, 37.731455 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729962 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.727857 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.727620 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.728434 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728299 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.731387 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446446, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.735528 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.734001 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.733967 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445588, 37.734001 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.731523 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.726024 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725549 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724090 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723546 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723852 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451167, 37.723105 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451081, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721917 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.722121 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.721985 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449279, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.720390 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.723003 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.721001 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.719846 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720559 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720559 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444901, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.722834 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444386, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440095, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441897, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731523 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440009, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440009, 37.729011 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.728977 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.728808 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.727755 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.731523 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.730369 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730301 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437177, 37.731387 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.733831 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.733933 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431898, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.733492 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.733390 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434001, 37.733593 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.732406 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433400, 37.732541 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437005, 37.731319 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441640, 37.726839 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.725753 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442412, 37.725889 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725889 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725685 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725685 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.725956 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441211, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441339, 37.723377 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723275 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723445 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723682 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.723580 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439752, 37.722053 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721272 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.723377 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.724293 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.724667 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.724599 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.724701 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.724531 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.723954 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.723920 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723377 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.726364 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726364 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.726160 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.723954 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721476 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423186, 37.806359 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.806359 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.807038 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.806732 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421899, 37.805580 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.806699 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.806631 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.805715 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805647 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.805817 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.805647 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808326 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.807241 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806156 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.805512 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417607, 37.805478 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417178, 37.806054 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.808597 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808089 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808021 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.807411 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.806563 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.807851 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.807784 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.808360 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.807614 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.806665 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.806495 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.805749 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.806868 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.807038 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801477 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.801511 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.801341 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.801680 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428164, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.801816 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.802121 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.802019 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.797645 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.797781 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428079, 37.800934 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800866 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427392, 37.798052 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798221 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425418, 37.805105 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425418, 37.804969 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425246, 37.805173 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805037 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425332, 37.804834 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425160, 37.804800 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.804291 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.804122 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.805308 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423487, 37.805241 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.805003 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423787, 37.803376 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802426 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802324 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802358 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802189 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424645, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805410 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.803647 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803477 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.801477 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.800493 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800324 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.798594 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424130, 37.798459 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798459 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.798662 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.799001 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.798798 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.798832 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422414, 37.798696 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797747 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.796967 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.791914 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.790523 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.790354 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.790184 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790693 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427135, 37.790693 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796424 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794898 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.794898 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.794932 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794796 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.796187 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.795271 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421470, 37.795102 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423358, 37.793948 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422414, 37.793067 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.792456 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421298, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.793202 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.791032 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424474, 37.791914 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.792117 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.791439 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.791371 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.791168 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422242, 37.790455 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422328, 37.790354 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.791914 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.791507 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790455 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420783, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790489 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.789506 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.804766 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.804800 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802901 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.802833 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416148, 37.804528 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.805342 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.805241 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804528 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804528 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804528 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804528 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415977, 37.804189 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.801002 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.801002 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.800222 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.798933 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.800188 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799273 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418981, 37.799239 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799171 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798357 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.798323 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797407 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799442 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.799340 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799544 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.799679 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.804969 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.804393 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.803782 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803749 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.803409 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.802833 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.802697 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801816 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.802087 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.804969 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.804800 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411427, 37.802765 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.802935 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.801172 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.801239 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409711, 37.803138 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.799747 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.799883 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412715, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.799951 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.799985 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.800120 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800052 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.799035 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800493 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.800392 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.800188 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.800392 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.800426 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.798187 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.797340 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.797204 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.795339 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.795373 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.795339 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.795542 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.795407 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418294, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.794627 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794423 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.793406 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.792524 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.794559 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418036, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.795576 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794864 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794661 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.792863 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.791710 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790828 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.790862 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.790693 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.789675 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.789540 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789370 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417436, 37.791982 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.791846 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791100 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791032 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792049 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415590, 37.791269 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.791100 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.790184 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416921, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415462, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.789234 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.795949 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.795780 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414861, 37.795034 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795983 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.796153 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.795271 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414689, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.796119 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.796390 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.796187 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.795712 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.795610 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795441 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796390 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796560 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.795305 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.794627 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.794491 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.792660 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414174, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791473 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.791541 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.788319 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788658 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.791710 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410998, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410955, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.788861 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.808224 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.806088 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.807343 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807241 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.807173 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.806936 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.806800 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406020, 37.806631 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.806597 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.803511 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803376 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802358 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802223 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.801409 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803715 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.803545 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.802731 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.802664 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800527 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.799273 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.799205 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799374 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.800595 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.800697 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.797204 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.796797 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406106, 37.800765 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.798120 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.797611 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406363, 37.797814 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.797001 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.797306 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.797068 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.797340 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797170 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.805207 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.805139 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805037 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.803918 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402930, 37.802324 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.802969 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402759, 37.801409 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.802155 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.802969 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801273 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.799679 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.798120 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.797407 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797543 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.797781 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.800595 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.798323 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400784, 37.796865 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.796729 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.794627 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.796255 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.795373 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.793745 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.793033 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.792863 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.793745 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.794084 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.796119 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796051 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.794695 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.793406 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.792490 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.794491 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404561, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.792863 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792728 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792592 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792083 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.792219 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792287 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.792117 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.792117 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.791100 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.792321 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408853, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.789133 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.788387 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788183 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.789947 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789608 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.789472 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.788285 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788556 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.789811 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.788590 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403703, 37.795915 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401643, 37.796051 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402759, 37.794695 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.794016 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792931 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.794830 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795102 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.794288 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793304 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793304 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.793270 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.790998 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403703, 37.789743 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.788997 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.788997 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402501, 37.788488 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.792287 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.790286 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.790354 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.790354 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.791303 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399669, 37.791303 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.791100 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399154, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789336 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.788929 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788285 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.798967 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.799544 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397780, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.798900 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797814 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.797068 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.797204 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.795407 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.794491 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792490 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.793406 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.792524 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397523, 37.792592 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793542 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793982 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792999 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.793033 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793202 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396193, 37.793474 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796695 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394433, 37.795000 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795102 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.795034 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.794830 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.793745 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.792524 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794423 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.794152 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.794220 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.794220 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793915 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394004, 37.792660 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.793474 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793202 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.792999 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791914 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791642 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789404 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.789641 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.789472 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.788522 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.791507 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.791982 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.791982 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394776, 37.791846 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394347, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790828 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790591 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.790761 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.790591 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.790591 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.790557 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790421 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789947 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395892, 37.789879 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.789201 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.789947 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.789811 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.789811 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.789811 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.789709 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793101 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792728 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392545, 37.791405 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392545, 37.791168 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391086, 37.792355 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391086, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393103, 37.788861 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.788658 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.790795 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790761 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389884, 37.790557 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.790489 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.789608 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789675 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828192 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.826938 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.829853 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.373490, 37.829819 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.371945, 37.828396 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.371945, 37.828328 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.376323, 37.825480 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.375636, 37.824463 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.375422, 37.824158 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823243 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823413 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.372718, 37.824057 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.373919, 37.823514 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.371473, 37.824599 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.829277 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827311 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.370057, 37.825209 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.369928, 37.825243 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.368941, 37.823616 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.366967, 37.825311 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.371817, 37.816022 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.371430, 37.816226 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.369542, 37.818497 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822362 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821921 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.366323, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.366109, 37.819921 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.370143, 37.818328 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813073 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.370915, 37.813242 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.371001, 37.813140 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813140 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.812022 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.811818 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.822226 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.364178, 37.820735 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.364821, 37.811988 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.364564, 37.811852 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.363791, 37.811683 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.364306, 37.811344 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.363362, 37.810496 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.363405, 37.810394 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429624, 37.786487 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.784656 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.786657 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428164, 37.784859 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427821, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.781909 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.781773 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.782010 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.787200 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425075, 37.785436 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785063 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.787844 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.785673 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421470, 37.785606 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.784656 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.782383 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425547, 37.779466 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.779704 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423444, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.782485 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.781942 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780959 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.780077 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.778618 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430482, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.776990 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776855 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775837 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.776108 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.775803 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.776040 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.776040 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426963, 37.779195 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.779331 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777397 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774277 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.773768 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430739, 37.772139 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772207 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430482, 37.772004 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430353, 37.772038 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.772445 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425203, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776515 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.777737 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.775973 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772920 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773802 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.773836 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424645, 37.770952 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.773089 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420955, 37.774175 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420783, 37.771766 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786555 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.786793 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786148 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.785843 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.787064 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.786352 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.787233 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417779, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.782282 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.782180 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.779975 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.779704 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.781230 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.780314 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.780179 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417693, 37.783367 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417436, 37.783231 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.783265 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417178, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417092, 37.781705 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.783469 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782621 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415805, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.780518 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780586 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416835, 37.780382 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415891, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.780721 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.780789 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414861, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.787437 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.786555 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414689, 37.786420 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413316, 37.786759 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.786860 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414432, 37.785538 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.784724 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413144, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.785809 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.787878 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.787166 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.787200 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.785843 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.783672 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782824 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.781671 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.781061 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412457, 37.780654 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412457, 37.780552 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.782078 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409883, 37.783401 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410226, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.781162 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.781298 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780314 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.778686 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419753, 37.778177 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418294, 37.778381 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775294 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.775091 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775362 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778890 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.778754 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416835, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.777601 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.777601 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.777397 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.777363 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775939 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774955 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418466, 37.772988 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774582 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774311 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.774209 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415376, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778618 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.778788 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.778483 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.779093 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412715, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.776448 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.778958 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.779161 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.775125 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772106 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413745, 37.772004 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.770850 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.773903 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.774751 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.772411 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429709, 37.770240 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769290 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.769324 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.767526 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.767662 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.767763 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767831 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.767662 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767254 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.767356 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.769799 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.768883 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767763 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.767831 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767390 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767288 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.766271 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428808, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.764371 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764405 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.764574 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764574 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.762810 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.762810 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.770579 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.769799 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.770138 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.768374 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.767865 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764710 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.764846 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.766271 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.764846 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.764642 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.763421 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.763082 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430482, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428422, 37.761453 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761385 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.761250 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428164, 37.761182 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759791 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427907, 37.758264 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428079, 37.757382 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.757450 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426877, 37.757246 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756635 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756432 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.754769 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427735, 37.754599 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425933, 37.761385 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.761521 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.761996 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.761657 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.761419 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758264 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.758739 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.757144 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.755550 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755074 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.753412 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.770477 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.768611 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.768204 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.766678 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.767153 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768476 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415547, 37.768476 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.766203 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.765117 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.765117 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417607, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765253 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765049 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762132 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.763828 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412286, 37.770376 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.769799 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.769120 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410741, 37.769324 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.768103 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768442 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.765524 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.762200 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.765728 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.764032 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.763149 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410140, 37.762946 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.759791 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.758162 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417092, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417006, 37.758942 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.758875 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.757517 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.755821 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.755176 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755719 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416449, 37.755482 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.759010 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.758976 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.758807 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.761657 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410097, 37.760571 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759316 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414346, 37.755957 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755448 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.787471 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.785063 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.783910 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784317 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408423, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.785436 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.784452 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.784147 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407994, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786657 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.786386 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.785843 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.785538 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.783401 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.783503 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781196 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782960 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782756 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.782723 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.781434 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.781230 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403531, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403188, 37.787708 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402501, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786386 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.786352 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.784656 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.784249 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.787878 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.786216 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399240, 37.786080 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.780314 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.780450 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403102, 37.780382 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.780687 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.777940 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.776855 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.776651 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.778618 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.777329 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.773870 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.773530 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.772547 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.771461 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.774684 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404990, 37.774582 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771563 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.779297 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402244, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.777940 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.776448 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.772038 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771699 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401643, 37.771699 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.773666 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.773462 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398124, 37.786759 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398124, 37.786555 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785741 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785741 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.785334 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787437 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.784181 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782689 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.779466 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.783299 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779975 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.786182 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784588 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391944, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390571, 37.780687 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388339, 37.783604 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389884, 37.779704 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389541, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396665, 37.778449 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.776312 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397180, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397180, 37.775430 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.777262 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394433, 37.777431 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777194 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.777024 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.777058 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.777024 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776312 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776380 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393918, 37.776312 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776278 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394347, 37.776074 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775769 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397952, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773123 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779297 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392459, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778110 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.775294 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776176 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389970, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772988 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.771156 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.768442 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.768272 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.768272 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.766339 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405505, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.764574 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.763285 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.762200 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770240 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.769901 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769765 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.768747 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402844, 37.768578 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402930, 37.767458 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.765931 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766339 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766135 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.765999 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401643, 37.766067 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401729, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.764914 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.763557 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.766271 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399669, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.764914 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401385, 37.763489 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.762200 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.761657 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.759078 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404218, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757517 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.756194 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755719 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754158 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757484 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.757178 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755889 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.755210 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.753989 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404046, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.761996 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404046, 37.759655 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403874, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402930, 37.759689 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759553 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402244, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.759451 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.759655 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.758128 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400784, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759723 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.756873 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756160 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.754464 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.754396 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.754464 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402501, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754498 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754328 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.753378 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.757450 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.757348 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.757314 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.757178 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.755923 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.755753 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754871 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.754837 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.766508 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.766406 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766644 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397780, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.762607 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762437 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.762607 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.762844 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393231, 37.762742 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.770511 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.766847 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769731 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389455, 37.769324 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769561 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.769052 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389369, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.766576 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.766576 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.762878 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.764371 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764405 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.764439 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.762912 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.764167 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.763353 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.762674 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.761317 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.761148 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398381, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.759960 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761419 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.760130 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.760096 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.759994 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395978, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.758128 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.760028 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395205, 37.758264 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398038, 37.757450 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.755957 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.754803 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.754667 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753548 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754667 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395720, 37.756839 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.757653 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395806, 37.755448 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395720, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757755 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391772, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.760775 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.760605 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760571 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757857 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.757789 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388511, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.758060 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758162 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388082, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393060, 37.757585 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.755142 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.755007 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.755685 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388082, 37.755074 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755312 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755278 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.749374 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427135, 37.749170 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.746524 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.744929 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.746999 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426877, 37.746795 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425332, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425246, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.751851 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743605 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742825 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426620, 37.742655 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.742044 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426534, 37.742146 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426534, 37.742112 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742112 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426448, 37.742214 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426362, 37.742146 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.736648 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.736444 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.736343 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427907, 37.737123 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427735, 37.737123 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424474, 37.742180 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.743809 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.741060 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.741026 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425675, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425504, 37.739635 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.739804 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.739736 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.739397 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.739736 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.738990 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.738854 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.737463 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.736207 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740211 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740279 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752190 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.752326 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.752190 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.751953 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.750290 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.750663 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.749510 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752326 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752496 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416148, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416148, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.749102 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.748661 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420354, 37.747983 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.748560 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746931 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.746727 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.746659 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419410, 37.746252 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.745913 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.748288 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.752564 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752598 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752428 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.751003 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749238 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.749238 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752598 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748492 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413745, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746863 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.748424 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744284 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.739295 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418466, 37.739295 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.739024 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416406, 37.739092 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413144, 37.744182 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.744148 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410483, 37.744352 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744284 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.741230 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.741501 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.741840 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.738990 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413316, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.738786 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.738243 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.738243 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.737157 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.736037 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412114, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411427, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.740076 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.739804 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733220 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.733492 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.733458 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427993, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.733729 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.730641 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429667, 37.731387 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429280, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429709, 37.730437 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.728706 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728604 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.728672 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.730844 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428808, 37.728468 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.728604 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728604 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425933, 37.734035 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735901 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424474, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.735256 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.735256 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.735087 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.728706 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426105, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421899, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.728740 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724734 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.723988 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.723105 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431083, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.722494 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429452, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721544 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.721374 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.721272 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426105, 37.724667 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424388, 37.724734 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.724734 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725074 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725210 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725583 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725413 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720390 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.735800 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.735121 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.734951 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.735053 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732609 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417006, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.734951 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416921, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417779, 37.732813 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.732847 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.732541 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419410, 37.729147 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.729011 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.729011 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.728842 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415032, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415032, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734680 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.735800 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.734951 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.733593 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.734917 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411170, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.729860 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.729928 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.727416 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.727382 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.730912 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.725855 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.725956 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.726398 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.726364 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.718896 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.726466 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.725142 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413402, 37.725006 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.723920 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412887, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723241 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.723105 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.722698 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722834 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.718760 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.752835 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.749510 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.753005 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.753242 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751410 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409539, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744725 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402244, 37.751885 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.752122 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.750731 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.750731 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.750867 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400012, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747134 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403703, 37.746422 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743062 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742859 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.743334 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742859 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.741331 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.739668 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.739533 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.738379 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.739872 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.737938 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742519 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.741060 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743944 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398810, 37.743911 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.741501 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.738786 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.739125 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400527, 37.739533 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398896, 37.736376 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.752292 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752224 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752156 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.752564 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.751444 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397051, 37.749035 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.749883 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396235, 37.750019 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.752496 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.747338 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395892, 37.747270 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393918, 37.746150 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393832, 37.745981 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752631 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752564 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387738, 37.750392 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396922, 37.742791 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.741705 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.738243 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.736309 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.737225 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737089 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.737157 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.736207 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736852 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736648 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394519, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.744250 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390485, 37.744046 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.740687 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388597, 37.742960 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.742994 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742723 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742723 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742723 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742689 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388167, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391429, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391257, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.738073 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737564 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737530 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736343 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736275 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.736309 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.739329 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389112, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389112, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.740110 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.739974 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739974 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.737225 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.737938 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.737938 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.737632 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.737632 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737632 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405591, 37.734238 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.732406 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.732338 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.733288 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.733220 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404819, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732949 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.733050 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.732066 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731319 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408853, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730098 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404990, 37.728027 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.727993 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727314 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727450 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.734170 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735256 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.735324 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399240, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727518 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403531, 37.727314 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727755 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.727654 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728468 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.730369 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730199 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.729113 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.729113 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726296 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.726126 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.726534 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.726669 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725210 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.723377 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408423, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407994, 37.725074 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.726805 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.726907 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405076, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403016, 37.726364 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.725312 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724090 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724191 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.723546 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400184, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.723275 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720661 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401385, 37.721544 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.721476 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721544 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.733288 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.733186 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731998 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.731795 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395291, 37.731184 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.727925 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392716, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735800 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735664 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390485, 37.735087 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734374 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390742, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390914, 37.734103 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734136 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734035 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390914, 37.733899 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.733865 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732270 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.732270 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.732270 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.732270 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391343, 37.732406 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732236 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.732202 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.734510 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390056, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389026, 37.732881 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392030, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.730437 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.729385 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729215 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392631, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729283 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.729215 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727925 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390399, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727891 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397952, 37.723003 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.726941 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.725685 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.725481 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725481 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.725447 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725312 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.724157 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.723784 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721136 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.722494 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.720797 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722426 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722630 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722460 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.722019 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.721408 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.727077 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727043 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719914 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386880, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386880, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386794, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386708, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.755651 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387652, 37.753140 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.750324 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387567, 37.749102 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.748933 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387266, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.745845 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.746048 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.745777 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387137, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386408, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740551 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742519 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383704, 37.742553 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383361, 37.743911 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743809 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383189, 37.743707 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384648, 37.741128 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.741060 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384562, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384520, 37.740687 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386537, 37.738990 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386279, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385893, 37.736614 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.740008 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.382631, 37.739872 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739804 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.382803, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384133, 37.737700 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384176, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.381773, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738752 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738616 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.380786, 37.738786 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379498, 37.737089 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379498, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379241, 37.737666 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.737021 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.735833 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732066 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387309, 37.731862 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.731862 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386622, 37.732575 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386622, 37.732372 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386065, 37.733016 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385035, 37.733186 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383533, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383533, 37.735732 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734680 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384863, 37.733050 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384777, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383103, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.729554 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385163, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386279, 37.729520 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727348 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.382674, 37.730165 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729419 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734170 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734035 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.382116, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.380013, 37.733458 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379842, 37.733288 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379928, 37.732507 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379713, 37.732406 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.734374 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.734103 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.378941, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.377181, 37.732711 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.381730, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.381387, 37.730776 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.380357, 37.730573 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.381387, 37.729385 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728672 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.380185, 37.727993 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.377009, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.377095, 37.730030 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.728231 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386751, 37.726126 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726024 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727111 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.375894, 37.731998 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.375593, 37.731998 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.374048, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.729894 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730233 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.373748, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.372117, 37.729860 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.371860, 37.729894 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.373147, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729147 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.368727, 37.725345 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.367911, 37.725345 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.365594, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728604 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.365465, 37.727925 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.360959, 37.727348 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.716757 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716520 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496486, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716248 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718488 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478719, 37.717945 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477088, 37.717708 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477431, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716791 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.715976 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474256, 37.717436 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474599, 37.715908 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.715908 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472367, 37.717742 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.717742 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.717572 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.715976 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.718522 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448592, 37.718285 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716248 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716044 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716520 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716452 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.716655 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440181, 37.716180 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.716112 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430139, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718149 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428336, 37.717470 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425675, 37.718285 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.717300 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716655 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716587 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.717063 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716112 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400184, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.716995 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.718251 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717470 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435288, 37.762674 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762607 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.792999 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775159 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778686 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778551 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784317 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784215 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 954, "y": 791 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +] } +] } +] } diff --git a/tests/muni/out/-zg_--retain-points-multiplier_2.json b/tests/muni/out/-zg_--retain-points-multiplier_2.json new file mode 100644 index 000000000..21f7457c0 --- /dev/null +++ b/tests/muni/out/-zg_--retain-points-multiplier_2.json @@ -0,0 +1,23842 @@ +{ "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.431641,37.788049,11", +"description": "tests/muni/out/-zg_--retain-points-multiplier_2.json.check.mbtiles", +"format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/muni/out/-zg_--retain-points-multiplier_2.json.check.mbtiles -zg --retain-points-multiplier 2 tests/muni/muni.json", +"json": "{\"vector_layers\":[{\"id\":\"muni\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":11,\"fields\":{\"name\":\"String\"}},{\"id\":\"subway\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":11,\"fields\":{\"name\":\"String\"}}],\"tilestats\":{\"layerCount\":2,\"layers\":[{\"layer\":\"muni\",\"count\":4592,\"geometry\":\"Point\",\"attributeCount\":1,\"attributes\":[{\"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\"]}]},{\"layer\":\"subway\",\"count\":19,\"geometry\":\"Point\",\"attributeCount\":1,\"attributes\":[{\"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\"]}]}]}}", +"maxzoom": "11", +"minzoom": "0", +"name": "tests/muni/out/-zg_--retain-points-multiplier_2.json.check.mbtiles", +"strategies": "[{\"dropped_by_rate\":4607},{\"dropped_by_rate\":4607},{\"dropped_by_rate\":4605},{\"dropped_by_rate\":4601},{\"dropped_by_rate\":4591},{\"dropped_by_rate\":4569},{\"dropped_by_rate\":4513},{\"dropped_by_rate\":4371},{\"dropped_by_rate\":5237},{\"dropped_by_rate\":3669},{\"dropped_by_rate\":1030},{}]", +"tippecanoe_decisions": "{\"basezoom\":11,\"droprate\":2.5,\"retain_points_multiplier\":2}", +"type": "overlay", +"version": "2" +}, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "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 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "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 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.822802 ] } } +, +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.822802 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.753344 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "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 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.840157 ] } } +, +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.840157 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.770715 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "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 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.831480 ] } } +, +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.831480 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.762030 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "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 }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.831480 ] } } +, +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.831480 ] } } +, +{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.762030 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.818463 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.818463 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 12 }, "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 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.831480 ] } } +, +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.831480 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.762030 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.820633 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.820633 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 6, "x": 10, "y": 24 }, "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 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832565 ] } } +, +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.831480 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.726194 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.808699 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay St & Midway St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.824972 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.823887 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.706640 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.717504 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.763116 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 6, "x": 29, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.819548 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.819548 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 7, "x": 20, "y": 49 }, "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 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832565 ] } } +, +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.832022 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.804901 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.727823 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.727823 ] } } +, +{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.726194 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "539 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.759316 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.745743 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.745743 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.750629 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.750629 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.808156 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay St & Midway St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.805986 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.804901 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Front & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St." }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.824972 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369156, 37.823887 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769086 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769086 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.756058 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.754973 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.747372 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.732711 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.745743 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.726737 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.732711 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.707183 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707183 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.707183 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710443 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710443 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.710443 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.712072 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 7, "x": 59, "y": 49 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +] } +] } +, +{ "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 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way" }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738413 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.722121 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724836 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "name": "Randall St & Whitney St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739499 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.736784 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727552 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.726737 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St" }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732711 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.376022, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.707183 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.718319 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707455 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.707455 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Allison St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.713430 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710443 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708541 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712072 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709899 ] } } +] } +] } +, +{ "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 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832294 ] } } +, +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.536354, 37.831751 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502022, 37.836361 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.833921 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799747 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800832 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800832 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.799476 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.799205 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.800290 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798662 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.800290 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.799205 ] } } +, +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.804901 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797306 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796492 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788353 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508202, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St" }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741671 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741671 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.744114 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.744114 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way" }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782383 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782383 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "name": "ARGUELLO BLVD & EUCLID AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.774243 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.770986 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.759316 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.782383 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.773700 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769358 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.767458 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766372 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.759044 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "539 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766372 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766915 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.767458 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.754158 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.759316 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.748729 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741671 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.750901 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.745743 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.745743 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD" }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736784 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School" }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.750901 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.750629 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.746557 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.751444 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741671 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.722121 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724836 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.806258 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.807885 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.800290 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.804901 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave&North Point St SE-NS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804901 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800290 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794864 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.794322 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.790523 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805173 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797306 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799476 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.802731 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.802731 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795949 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.791608 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808156 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay St & Midway St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.805986 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.802731 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.804901 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.788353 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.795949 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.798933 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.799476 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Front & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.791608 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789709 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789709 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St." }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.788895 ] } } +, +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828497 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828226 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.825243 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.823616 ] } } +, +{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240" }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "785 Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786182 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.781298 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.782926 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp" }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769358 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.766372 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.762844 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769086 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.769358 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755787 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.756058 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781298 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769901 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759044 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.759044 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.757144 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.757144 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755787 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.754973 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "name": "Randall St & Whitney St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739499 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744386 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.751444 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.736784 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727552 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.726737 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St" }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385292, 37.740585 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732711 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.376022, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.707183 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.718319 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707455 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.707455 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Allison St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.713430 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710443 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708541 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712072 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709899 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 41, "y": 99 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 41, "y": 98 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Avenue M & 13th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.829311 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 10th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368126, 37.827413 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.825243 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.823616 ] } } +, +{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240" }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 119, "y": 98 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 81, "y": 198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.728231 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721985 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721713 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727823 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727688 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.721985 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level" }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723343 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.721985 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.723343 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724701 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724701 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.724701 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.727416 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.724972 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.727688 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726194 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726601 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723343 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.726737 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729317 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727823 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725244 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724157 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St" }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.722528 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.368641, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714924 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.717640 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.715060 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.714652 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710850 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St&Alemany St" }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.707047 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710850 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.710307 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.705961 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707319 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.707455 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Allison St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708677 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Acton St" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716146 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.713973 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712887 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718319 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713702 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712072 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712751 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710307 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.708677 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.708134 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707047 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.712615 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.714924 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.709492 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.716961 ] } } +, +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709764 ] } } +] } +] } +, +{ "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 }, "geometry": { "type": "Point", "coordinates": [ -122.538586, 37.832429 ] } } +, +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.536182, 37.831751 ] } } +, +{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.527599, 37.829040 ] } } +, +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD" }, "geometry": { "type": "Point", "coordinates": [ -122.530346, 37.824972 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831345 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Light House" }, "geometry": { "type": "Point", "coordinates": [ -122.529659, 37.821853 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502193, 37.836496 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.833921 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832836 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.829582 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.792287 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480564, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792287 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806122 ] } } +, +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806936 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799883 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.798527 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.803952 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Transit Center" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.802324 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797984 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.800697 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800697 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798120 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.799340 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.799205 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803681 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.800290 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798527 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.795814 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.795542 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.791202 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.800426 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.799340 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.804901 ] } } +, +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805173 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799747 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799883 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796628 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795814 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794864 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788488 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.790116 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509747, 37.773700 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503910, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771529 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.771936 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.508373, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508202, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.758637 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.781705 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779534 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779534 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.781705 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.775871 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St" }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489834, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.784147 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.776278 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477989, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.764337 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758909 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.755108 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "LINC. WAY & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757823 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.760130 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.754023 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754158 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.749136 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745607 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.745472 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499447, 37.747643 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.741671 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498245, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735562 ] } } +, +{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.751851 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.747643 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.747779 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.744250 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743978 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.742349 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.742214 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738413 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.750358 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750222 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.746422 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.733933 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733661 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.730403 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733933 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way" }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734204 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729588 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio & California Street", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.782926 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773021 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St" }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "name": "ARGUELLO BLVD & EUCLID AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.781298 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773564 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774650 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.770850 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763794 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.762166 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.759316 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.759180 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.757008 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754158 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.762166 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764337 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.764337 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763658 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758637 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756737 ] } } +, +{ "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "117 Warren Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.784147 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.786182 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.787674 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.773021 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777635 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.773836 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.774243 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.774243 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.779534 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783469 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.786182 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.781298 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779263 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.774514 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.771258 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.771258 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.771665 ] } } +, +{ "type": "Feature", "properties": { "name": "Shrader St & Haight St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.769358 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.768272 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.768951 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.767051 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.764337 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "414 Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758909 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "320 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Danvers St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "539 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.757551 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "795 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.754158 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766508 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762437 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.769222 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.767458 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762437 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Noe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.754023 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.754023 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.754158 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.759451 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Collingwood St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.750494 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.748729 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.746965 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749136 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.749136 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473354, 37.743164 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743164 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.743435 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Arrive" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.750901 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751444 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751580 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747779 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.747779 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.745743 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.745743 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.739363 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.744114 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.743978 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD" }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736648 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731218 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.728231 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.732575 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721985 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721713 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School" }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.745879 ] } } +, +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750358 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750901 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "120 Portola Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741671 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736648 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.751037 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751037 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749544 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.751444 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.749544 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744657 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way" }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.738549 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734204 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727823 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727688 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.733933 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.721985 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level" }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733390 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St" }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723343 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.721985 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.723343 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724701 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806393 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.807071 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805851 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805851 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806122 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.808021 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.808021 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.807885 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.805715 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.806936 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.801646 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.800426 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800832 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.798120 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.804901 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave&North Point St SE-NS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804766 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.802460 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.802324 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.803681 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.800426 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800290 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.798798 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798798 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.790523 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.790388 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794728 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.790388 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.790388 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790523 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805308 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.805308 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799205 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799476 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804901 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804359 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.802731 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.801239 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.799883 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800154 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800426 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800426 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792829 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795949 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.794322 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796492 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.795271 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.791608 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808292 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay St & Midway St" }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.806122 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.806665 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802189 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.802731 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.800426 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.799340 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.797034 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.797306 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805037 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.803952 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801239 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.796899 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.794322 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.792829 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792287 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.790116 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.788353 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.788353 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.794864 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & SANSOME ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793101 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.789031 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792287 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Battery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "name": "BUSH ST & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 2nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "2ND ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.798933 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.799612 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "Drumm St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793915 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.795000 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Front & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Fremont St" }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.790116 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.791473 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790795 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St." }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.788895 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790795 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.790523 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789709 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828362 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828362 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St. & Avenue D", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.823480 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue E" }, "geometry": { "type": "Point", "coordinates": [ -122.371387, 37.824565 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.825243 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368984, 37.823616 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822396 ] } } +, +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla St & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813174 ] } } +, +{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.811954 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240" }, "geometry": { "type": "Point", "coordinates": [ -122.364521, 37.811818 ] } } +, +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810326 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.781705 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.787674 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775871 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.774243 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.773700 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "785 Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "name": "Fell St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773836 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.773021 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.773021 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786182 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782926 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.781162 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783333 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.786860 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.781705 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.782383 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777635 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.774243 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.778449 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771936 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.770850 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767865 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767729 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.768815 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.762844 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.759723 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754837 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754566 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768408 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768408 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness &16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.769086 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.769358 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.762166 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755787 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755787 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20St" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.755923 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.787674 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781162 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.781162 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787674 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.787674 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Minna St" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.771393 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.774650 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.784147 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Perry St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.783333 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776278 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.776278 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768408 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.769901 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759044 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.759044 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755787 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755923 ] } } +, +{ "type": "Feature", "properties": { "name": "Sf General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755244 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "name": "176 Rhode Island St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.756194 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.754566 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.757144 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766644 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.762437 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.770579 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & 4th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.766915 ] } } +, +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "name": "1730 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.767865 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.763387 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760808 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.757823 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.757959 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.755651 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755108 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751580 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751851 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751851 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751851 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.742214 ] } } +, +{ "type": "Feature", "properties": { "name": "46 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.736376 ] } } +, +{ "type": "Feature", "properties": { "name": "Randall St & Whitney St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.739635 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739635 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739363 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.737463 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.752122 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.749544 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St." }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744250 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.739363 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.739092 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744386 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744250 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Still St & Lyell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733390 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733390 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735562 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724701 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.724701 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "name": "989 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732575 ] } } +, +{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.732575 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.735833 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.724972 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.749544 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.751444 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.752122 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750901 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.741264 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738413 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.739092 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.739499 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.749815 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.749951 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.736376 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736784 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736648 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.739363 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734204 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.733118 ] } } +, +{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735290 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.727688 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726194 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726601 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723343 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.726737 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731761 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.732847 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729317 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727823 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725244 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724157 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St" }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.722528 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.755651 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740585 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743707 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.741128 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386494, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732575 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St" }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386494, 37.729588 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.382202, 37.733390 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379971, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379627, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732711 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.381687, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375851, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.373791, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.368641, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714924 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.717640 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.715060 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.714652 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710850 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St&Alemany St" }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710850 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.710307 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Allison St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708677 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Acton St" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716146 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.713973 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712887 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718319 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713702 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712072 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712751 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710307 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.708677 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.708134 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.712615 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.714924 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.709492 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.716961 ] } } +, +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709764 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784147 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 238, "y": 197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 163, "y": 396 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721781 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465200, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463484, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.721917 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721781 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723546 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723003 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.451811, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721917 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.721985 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723003 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.723003 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level" }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720559 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723275 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723546 ] } } +, +{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.722053 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.723343 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.722528 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.721374 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719337 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719337 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723954 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.723546 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St" }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721510 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721510 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.722460 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722460 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.722053 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714856 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714584 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711189 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714584 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.717708 ] } } +, +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716757 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709288 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484941, 37.709152 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.717436 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717300 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714652 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713770 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714041 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714041 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.713091 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.713023 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710918 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714449 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469664, 37.714313 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714313 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.710375 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467260, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St&Alemany St" }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711597 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711393 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708745 ] } } +, +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468634, 37.707047 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.462626, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462282, 37.710918 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "274 Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.461596, 37.711461 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710103 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717708 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714856 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.711461 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711733 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } +, +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.710307 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.705961 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.706165 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.706640 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.706844 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707387 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.707387 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718251 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.713973 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714041 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448378, 37.710510 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710239 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714720 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Allison St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714449 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.711461 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711733 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.712819 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.708677 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Acton St" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708881 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716146 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.715671 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.715739 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Seville St" }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.710239 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714449 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.717640 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715128 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713498 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714041 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709967 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710918 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712955 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712819 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.712140 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.709492 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708881 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718115 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.711733 ] } } +, +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711868 ] } } +, +{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.711054 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.718319 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.713702 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709288 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.709017 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.708677 ] } } +, +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712955 ] } } +, +{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.712819 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711868 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711733 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710646 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713498 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712004 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415934, 37.712004 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.711597 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714449 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.712751 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.711054 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.712751 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.712276 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710510 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.710375 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.708473 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.708202 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.708609 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708338 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.707115 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.706912 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.708134 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707115 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706300 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709288 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708270 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717843 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.717300 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715331 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712615 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.709967 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.711461 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.711461 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711325 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713770 ] } } +, +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.712547 ] } } +, +{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.711868 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.714652 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712140 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712276 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712276 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712276 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712276 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.710646 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.712887 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.712004 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711597 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.711597 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.709492 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711189 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710850 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.718251 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.712819 ] } } +, +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium" }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.712140 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 163, "y": 395 }, "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 }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832361 ] } } +, +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831751 ] } } +, +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.532406, 37.831819 ] } } +, +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831887 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.527256, 37.832565 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527170, 37.832497 ] } } +, +{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.527685, 37.829040 ] } } +, +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD" }, "geometry": { "type": "Point", "coordinates": [ -122.530260, 37.825040 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.524424, 37.830463 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.524424, 37.830395 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.523222, 37.831345 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Light House" }, "geometry": { "type": "Point", "coordinates": [ -122.529659, 37.821853 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.514982, 37.831819 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502451, 37.836090 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502108, 37.836429 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.833853 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.833582 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.833582 ] } } +, +{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835886 ] } } +, +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.833175 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832836 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.829514 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.829446 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.806665 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803749 ] } } +, +{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.792219 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788488 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792287 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480993, 37.792083 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.807546 ] } } +, +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.806597 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807478 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806054 ] } } +, +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.806936 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.803477 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.803613 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.801036 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799815 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803070 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.802935 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460394, 37.798527 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.460222, 37.798459 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.797916 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.803884 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.801646 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801578 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.803884 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.454557, 37.803681 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.803749 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Transit Center" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.802324 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801578 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.801443 ] } } +, +{ "type": "Feature", "properties": { "name": "220 Halleck St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801714 ] } } +, +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters" }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.797916 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797984 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.797713 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.800765 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.800697 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455072, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798187 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.799137 ] } } +, +{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799137 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451811, 37.799408 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.799205 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.798052 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804359 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.803613 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.803409 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803749 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803613 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.803681 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.802460 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.798527 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.797170 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.800629 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.799815 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard & Richardson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.798662 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442713, 37.798866 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.796695 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.795610 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.795881 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790727 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788963 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.791202 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.803749 ] } } +, +{ "type": "Feature", "properties": { "name": "Scott St & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.803070 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800290 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.800426 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.799273 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.800697 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & STEINER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796899 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Steiner St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796899 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804427 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802799 ] } } +, +{ "type": "Feature", "properties": { "name": "BATTERY St & GREENWICH St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.802392 ] } } +, +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.804901 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803409 ] } } +, +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.805308 ] } } +, +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805105 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.801172 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.801307 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.800765 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799679 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799883 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.799612 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.800832 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.797374 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.797102 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.796967 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442026, 37.796288 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796560 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441339, 37.791541 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788488 ] } } +, +{ "type": "Feature", "properties": { "name": "Green St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.796017 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.795881 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794864 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.794932 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794118 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.792219 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792355 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.792355 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.791473 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788488 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Steiner St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788760 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.789913 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.788963 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.788760 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790116 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779873 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.512064, 37.779059 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.510347, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.510004, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773632 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.771665 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.780009 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.780009 ] } } +, +{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504168, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.779738 ] } } +, +{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504168, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779534 ] } } +, +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499704, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502966, 37.781095 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779466 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775260 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503653, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.507772, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773564 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771461 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503653, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503309, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775667 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.779263 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771868 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.772004 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767865 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510433, 37.767390 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.508974, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.506227, 37.764065 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.764065 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762369 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508116, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758637 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.756805 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754769 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502623, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499189, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496443, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.781637 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.781637 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.783401 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781773 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492495, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492323, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781773 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779738 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.779534 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.779534 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.488031, 37.783808 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491465, 37.781637 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.783672 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.783604 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779738 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.781909 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.781773 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.780009 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.775667 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775803 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777838 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.492151, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.775871 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.775803 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493010, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.771936 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.772004 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492838, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St" }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775871 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776074 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489405, 37.772411 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.772207 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.772479 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787335 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785843 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785707 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783808 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481680, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.782044 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484941, 37.782180 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780280 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780009 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482710, 37.780077 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.784215 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484426, 37.774582 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484255, 37.774311 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484255, 37.772682 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484083, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772479 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478161, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477903, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480650, 37.772682 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.764337 ] } } +, +{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.764540 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.495756, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494726, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490435, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.761012 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495928, 37.760808 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495928, 37.760808 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758909 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761012 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760876 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.757008 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495241, 37.755176 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753548 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492666, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.761148 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761148 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.491636, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490263, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489233, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.765083 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481852, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.480307, 37.763658 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "LINC. WAY & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763455 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486486, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486486, 37.761283 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.761419 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761555 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761555 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485971, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.753955 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.761555 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479792, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.757755 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761555 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.760130 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480993, 37.755991 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755923 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.753955 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.754362 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.756194 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.755991 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754090 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.506399, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753140 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751037 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.749340 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.749136 ] } } +, +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745472 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506742, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747440 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.747440 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745607 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.745404 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.745404 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502279, 37.753005 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.753140 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498846, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.753208 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747440 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499533, 37.747711 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.747643 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.743707 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741671 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.741739 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.738073 ] } } +, +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.736037 ] } } +, +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.504168, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502623, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500219, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498331, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742146 ] } } +, +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.735358 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500734, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.734544 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734136 ] } } +, +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } +, +{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499189, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499189, 37.731150 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753276 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.749815 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.749544 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.747575 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.497473, 37.745947 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.497301, 37.745947 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.745879 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.747779 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747983 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747847 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746082 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491207, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.747983 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.747983 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486658, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.746354 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.744250 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743978 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.742349 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742146 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742282 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742282 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.742214 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.740110 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.740245 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.738616 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738413 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.742349 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487688, 37.744521 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742417 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.738752 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485628, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476358, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750426 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750222 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748729 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748526 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746490 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745268 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742689 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.742960 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.743164 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741264 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733933 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733729 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.733729 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.733526 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.733729 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493696, 37.733390 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.730335 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493696, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491636, 37.734136 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733933 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way" }, "geometry": { "type": "Point", "coordinates": [ -122.489233, 37.734272 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734408 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.485800, 37.734136 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483912, 37.734204 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734544 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734272 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729656 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734680 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.734408 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728027 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728027 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728027 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.728842 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724090 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721781 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "281 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "280 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.726941 ] } } +, +{ "type": "Feature", "properties": { "name": "170 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473269, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio & California Street", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.782383 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.782723 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780552 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780687 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780552 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780823 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469149, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464685, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.782723 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.780959 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.782926 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.782926 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "name": "7th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.783130 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470350, 37.777024 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773021 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773021 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.775260 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464857, 37.775396 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469835, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773361 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.773496 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773496 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.773632 ] } } +, +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St" }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785165 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785707 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.781162 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460909, 37.781298 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Commonwealth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Maple St" }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.786250 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.784147 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453699, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "name": "ARGUELLO BLVD & EUCLID AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783265 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.781434 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781366 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781095 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.781230 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779195 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461767, 37.777363 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.773700 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773768 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773564 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455072, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.774446 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.774311 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.774582 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454557, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453871, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.770850 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765626 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.765626 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470350, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765897 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765762 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.763794 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764133 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St. & 9th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764133 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.762233 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762166 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.759316 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.761826 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.761826 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756941 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.756330 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.756330 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.754226 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754090 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.758434 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.758569 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.756669 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.756533 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.754837 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462454, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.764065 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.762233 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462883, 37.762369 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460737, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762776 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.764337 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "500 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.763319 ] } } +, +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.763319 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763726 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454557, 37.764337 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758637 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.758434 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463140, 37.758705 ] } } +, +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756737 ] } } +, +{ "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.754633 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754905 ] } } +, +{ "type": "Feature", "properties": { "name": "345 Warren Dr E", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.754498 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "117 Warren Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.755312 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451982, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.784215 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.782044 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787335 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787200 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.786250 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.785232 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.787607 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.782723 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.778110 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778381 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.778245 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.775396 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.775396 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.774921 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "Shrader St & Grove St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773021 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773089 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773361 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773632 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778788 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778517 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.778788 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.778788 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.775667 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775871 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Central Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.773768 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447348, 37.773768 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.773903 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.771936 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.774175 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.774311 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774446 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.439966, 37.786250 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439966, 37.785165 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439795, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.785232 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.779534 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783401 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.783401 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781637 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783604 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438936, 37.780416 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.786182 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785843 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.781095 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.780959 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781366 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442198, 37.779263 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779195 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.777431 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440138, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777635 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438593, 37.777838 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.777838 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.438421, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.774582 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770783 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.770918 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.774718 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.774921 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.778177 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.778245 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.775125 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431726, 37.778517 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.775396 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.771258 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.769154 ] } } +, +{ "type": "Feature", "properties": { "name": "Shrader St & Haight St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.769290 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.768340 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.768272 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766440 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766847 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.764540 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.764405 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.765897 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449408, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769968 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769154 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770104 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769019 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.767119 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.767254 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.767119 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770240 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Central Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.770511 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766305 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "414 Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.763387 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763726 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.763726 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761691 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449064, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.761826 ] } } +, +{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.760876 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.758909 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "320 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.759926 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "210 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.761826 ] } } +, +{ "type": "Feature", "properties": { "name": "211 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Danvers St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.759791 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.757823 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "539 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.757484 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.756466 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756398 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "795 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.754090 ] } } +, +{ "type": "Feature", "properties": { "name": "800 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.754023 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } +, +{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768815 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.768069 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766508 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766847 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762437 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.769154 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.768951 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.767390 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.767390 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.769222 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.769154 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.767526 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.767390 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764133 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762437 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762369 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.762505 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Noe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761691 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760605 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.759044 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.755041 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.754023 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.754023 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.755991 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.755787 ] } } +, +{ "type": "Feature", "properties": { "name": "21st St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.754226 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.760876 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.759384 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.759180 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757755 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Collingwood St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.757619 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.756126 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.754633 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.750562 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474127, 37.748797 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748661 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.748729 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.746965 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746761 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.745132 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748933 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.744996 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.750697 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.749136 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.749340 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743096 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473440, 37.743232 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741196 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743096 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.743368 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.743164 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.739024 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470350, 37.736376 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468805, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.741196 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741128 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740924 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.740924 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740924 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Arrive" }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740924 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station Inbound" }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.741128 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740788 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738073 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.738073 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.739431 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.750969 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.751715 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.749815 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.751376 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747847 ] } } +, +{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp" }, "geometry": { "type": "Point", "coordinates": [ -122.457132, 37.747779 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.745268 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.747779 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746354 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455587, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453871, 37.745743 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.745675 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.740381 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740245 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460051, 37.739363 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.740110 ] } } +, +{ "type": "Feature", "properties": { "name": "126 Miraloma Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461424, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.744182 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.743978 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457476, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.743503 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.743096 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.743232 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD" }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736716 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.736716 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734544 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.732779 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.732100 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734544 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.734272 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.731150 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.731150 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.731218 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731014 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.731014 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.731014 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.731218 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469835, 37.734680 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.734951 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.733118 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.729928 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.729928 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.728299 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474642, 37.727212 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727212 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727212 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465200, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460566, 37.735290 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734544 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734408 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.730064 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460394, 37.730539 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733593 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732643 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.732236 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.732100 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457304, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.730878 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731285 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731421 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461424, 37.724972 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461424, 37.724904 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463484, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724361 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.724293 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.721917 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721781 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.749951 ] } } +, +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748933 ] } } +, +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School" }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.745947 ] } } +, +{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752326 ] } } +, +{ "type": "Feature", "properties": { "name": "74 Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.750426 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "name": "925 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "name": "956 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.751715 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.749136 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442713, 37.750697 ] } } +, +{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.746490 ] } } +, +{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.746354 ] } } +, +{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.747033 ] } } +, +{ "type": "Feature", "properties": { "name": "120 Portola Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746897 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.744386 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743503 ] } } +, +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744454 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741739 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.741060 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way" }, "geometry": { "type": "Point", "coordinates": [ -122.448034, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.737666 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.737463 ] } } +, +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.736784 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.736444 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736580 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "name": "Fountain St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.441683, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.750969 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.749340 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.748526 ] } } +, +{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.746897 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745268 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.749476 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.751376 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.751376 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.749611 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.748661 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.745607 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.745472 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744657 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.743639 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.743232 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.743096 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way" }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.738616 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.739974 ] } } +, +{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.738345 ] } } +, +{ "type": "Feature", "properties": { "name": "164 Addison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734204 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.733118 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } +, +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729928 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727891 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452326, 37.727620 ] } } +, +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728299 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731421 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.734001 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.734544 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.734001 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723546 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723003 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.451811, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721917 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.721985 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723003 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.723003 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level" }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720559 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728977 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.728842 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.727755 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730335 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731421 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St" }, "geometry": { "type": "Point", "coordinates": [ -122.431898, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733458 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.733390 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733593 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.732372 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St" }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726805 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725855 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725651 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725651 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441339, 37.723343 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723275 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723546 ] } } +, +{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.722053 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.723343 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724633 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.724701 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.724565 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Francis St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.726330 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726330 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.723954 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.806326 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.807004 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806732 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.805580 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.806665 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805647 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.805783 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.805647 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808292 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806190 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.805512 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.805512 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.806054 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808089 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808021 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.807411 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.807817 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.807817 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.808360 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806665 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.805715 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.806868 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801511 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.801511 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.801578 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.802121 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.797645 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.797781 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800832 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.798052 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798187 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.805105 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.805173 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805037 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.804834 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave&North Point St SE-NS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804834 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804088 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.805308 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423487, 37.805241 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.805037 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.802460 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802324 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802324 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802189 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.803681 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803477 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.801646 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.800493 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.798594 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.798459 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.798662 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.799001 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.798798 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.798798 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Green St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797713 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.796967 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.790523 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.790388 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.790184 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790727 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.796424 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Franklin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.794932 ] } } +, +{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794932 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794796 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.796153 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795271 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.793101 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.792083 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.791405 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.790455 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.790388 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.792355 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.791541 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790455 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790523 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.789506 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.804766 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802935 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.805308 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.805241 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804562 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804562 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804562 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.415934, 37.804223 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.801036 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.798933 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.800154 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799273 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799205 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799137 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798323 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.798323 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799476 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.799340 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799544 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.804969 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804359 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803749 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.802799 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.802664 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.802121 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.804969 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.804834 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.802935 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.801172 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Filbert St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.801239 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803138 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.799883 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.799951 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800086 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.799001 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.800222 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.800426 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.798187 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.797374 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Broadway", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.797238 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.795407 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.795339 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.795407 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.794661 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794389 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794864 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794661 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.792897 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.790862 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.790727 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789641 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.789370 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.791812 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792083 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.790184 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.789234 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.795949 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.795814 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.796017 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.796153 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.795271 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796153 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.795610 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795475 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796424 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796560 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.795339 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Powell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.791541 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410955, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.788828 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789031 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.808224 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay St & Midway St" }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.806122 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807275 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.807207 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.806936 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.806597 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803477 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803409 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802189 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.801443 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803681 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803545 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.802731 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "name": "COIT TOWER" }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.802664 ] } } +, +{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.799273 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799408 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.799137 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.800629 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.800697 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.798120 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.797645 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.796967 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.797306 ] } } +, +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.797034 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.797306 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.805173 ] } } +, +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.805173 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805037 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.803952 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.801443 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Filbert St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.802189 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801239 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.799679 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.798120 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.797781 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.800629 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.796831 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.795339 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.792897 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.796153 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.792490 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.792897 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Kearny St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792626 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792219 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792287 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.790116 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bush St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.790184 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789234 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.789099 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Post St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.789506 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.788285 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.792355 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788556 ] } } +, +{ "type": "Feature", "properties": { "name": "POST & GRANT", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.788556 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.795881 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792897 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.794796 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Front St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795068 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793304 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & SANSOME ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793304 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.790998 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.789777 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.789031 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792287 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.790320 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.790320 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Battery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "name": "BUSH ST & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Battery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 2nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.789370 ] } } +, +{ "type": "Feature", "properties": { "name": "2ND ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789234 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790184 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.789099 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788285 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.799001 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.799544 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.798933 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797781 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396193, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.797102 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792490 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "Drumm St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793982 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.793033 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396193, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796695 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.795000 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Ferry Building", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.794796 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395506, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Steuart St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "EMBARCADERO & ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.794118 ] } } +, +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart & Donchee Way" }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793915 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793033 ] } } +, +{ "type": "Feature", "properties": { "name": "Front & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Front St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791676 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Fremont St" }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.790116 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789370 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Natoma St" }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.789234 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.789506 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.788556 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395506, 37.791541 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission & Main St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.791812 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Beale St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.790862 ] } } +, +{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790727 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790591 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790591 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.790523 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395849, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.789913 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394133, 37.789709 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St&Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793101 ] } } +, +{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Hward St&Spear", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.791202 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792355 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391901, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St." }, "geometry": { "type": "Point", "coordinates": [ -122.393103, 37.788828 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790727 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.790591 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.790455 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789709 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828158 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.829853 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.373447, 37.829853 ] } } +, +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.371988, 37.828430 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.371988, 37.828294 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.824497 ] } } +, +{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.375422, 37.824158 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823277 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823413 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St. & Avenue D", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.373877, 37.823548 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue E" }, "geometry": { "type": "Point", "coordinates": [ -122.371473, 37.824565 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 13th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.829243 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 10th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827277 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.369928, 37.825243 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368898, 37.823616 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.366924, 37.825311 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371817, 37.816022 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818531 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822396 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821921 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue H", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.366152, 37.819887 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.370100, 37.818328 ] } } +, +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813039 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla St & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813242 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813174 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.812022 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.811818 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.822260 ] } } +, +{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.812022 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240" }, "geometry": { "type": "Point", "coordinates": [ -122.364521, 37.811886 ] } } +, +{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.363749, 37.811683 ] } } +, +{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.364264, 37.811344 ] } } +, +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.363405, 37.810394 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.786657 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.781909 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.781773 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.782044 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.787200 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.785436 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.787607 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.785707 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.782383 ] } } +, +{ "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425547, 37.779466 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423830, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780959 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.777024 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775871 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.776074 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.775803 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.779195 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.779331 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777363 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.774243 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.773768 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772207 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772004 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430353, 37.772004 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "785 Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425203, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Octavia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "Fell St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.775939 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773836 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423830, 37.773836 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.770986 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.773089 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccoppin St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.785843 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.787064 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.782180 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.780009 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.781230 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.780280 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.780145 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.783333 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783265 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.781705 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.783469 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780552 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.787335 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.786453 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Post St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.787674 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.786860 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.787878 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.787200 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.785843 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.783672 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.781637 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.781095 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St N" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.781162 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.781298 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.778177 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.777838 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775260 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775396 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.777431 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775939 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.773021 ] } } +, +{ "type": "Feature", "properties": { "name": "150 Otis St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "name": "Otis St & 12th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774582 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.774243 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.773361 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.778788 ] } } +, +{ "type": "Feature", "properties": { "name": "8TH St AND MARKET St" }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.778517 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.779195 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.779331 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St&Howard", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.775125 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772139 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.772004 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.770850 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.773903 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429667, 37.770240 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769290 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769290 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.767662 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767254 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.768883 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.766305 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 15th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428808, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.764405 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.762776 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.770579 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.769833 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.768408 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.763387 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759791 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.758298 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.757348 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.757484 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.757212 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756669 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754769 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.754633 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.761419 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.761691 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761419 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.757144 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.755583 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.755041 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.753412 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768611 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.768204 ] } } +, +{ "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.766712 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768476 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768476 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness &16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765083 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.763862 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.770376 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.769833 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769697 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.769086 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.769358 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.768069 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768476 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.762233 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.763998 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.759791 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.758162 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 18 th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.758909 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.758841 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.755787 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755176 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.753412 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755719 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416449, 37.755448 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.761826 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758976 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.758841 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20St" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761691 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759316 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.755923 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755448 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason & Turk" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis street & Powell street" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.785436 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL & MARKET TURNTABLE" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787674 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786657 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St &Stevenson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.783469 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mary St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781162 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782723 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.781230 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787607 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Minna St" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.787878 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.786182 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Third St" }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780416 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.780416 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.782180 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.781773 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 7th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.776617 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 6th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.773836 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772547 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.771461 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.774718 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771529 ] } } +, +{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 6th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.777974 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.772004 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771665 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.773496 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785707 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM" }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.784215 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Perry St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782723 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.783265 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.780009 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.779534 ] } } +, +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.783604 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.779738 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.775260 ] } } +, +{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.777431 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777024 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776278 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776278 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.776074 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773089 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd Street & King St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778110 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.773021 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.771190 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768408 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.768272 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.766372 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.764540 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.763319 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.762233 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.769901 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769765 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.768747 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.767458 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "17TH ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766305 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.763591 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.763523 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.761826 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757484 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755719 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754158 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757484 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755855 ] } } +, +{ "type": "Feature", "properties": { "name": "Sf General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.755176 ] } } +, +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.754023 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Vermont St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.759655 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Southern Heights Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758162 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & Southern Heights Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759723 ] } } +, +{ "type": "Feature", "properties": { "name": "176 Rhode Island St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756194 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.754498 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.754362 ] } } +, +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754498 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754362 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.753412 ] } } +, +{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.757348 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Carolina St" }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.757212 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755787 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754905 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.754837 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.397051, 37.766508 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766644 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762437 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.762844 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.770511 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & 4th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.766847 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "name": "1731 3RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.769697 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.769561 ] } } +, +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.769019 ] } } +, +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "name": "1730 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.766576 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.762844 ] } } +, +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.764337 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764405 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.762912 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.763387 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761148 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.759926 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761419 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.760062 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.759994 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.757484 ] } } +, +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.755991 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753548 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Coral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.757619 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.755448 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757755 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.760808 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760605 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.757823 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758162 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.757551 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.755176 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.755719 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.755041 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755448 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755312 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.749408 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.749204 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.744929 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.746965 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 30th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742825 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742146 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.742146 ] } } +, +{ "type": "Feature", "properties": { "name": "46 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.736648 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.736309 ] } } +, +{ "type": "Feature", "properties": { "name": "Randall St & Whitney St" }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.737123 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.742146 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.742282 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742417 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.742282 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.741060 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742417 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.742417 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.742417 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739635 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.739363 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.739024 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.737463 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752326 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752190 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.752190 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.751987 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.750290 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.749544 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752326 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.749136 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.748661 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St." }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746965 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.746761 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Power St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.746218 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Fair Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.745947 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Valencia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752598 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749204 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.749204 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752598 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom & Cesar Chavz St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746897 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744318 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.739295 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.739024 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.739092 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.744182 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.744386 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744250 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.741264 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.739024 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.736037 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733186 ] } } +, +{ "type": "Feature", "properties": { "name": "Still St & Lyell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.733458 ] } } +, +{ "type": "Feature", "properties": { "name": "4080 Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.733729 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429667, 37.731421 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.730471 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428808, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St" }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735901 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735223 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.735087 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.728706 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724768 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.722528 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.721374 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.724768 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.724768 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725176 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725447 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719337 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719337 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.735766 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.735087 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St" }, "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 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "name": "989 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732643 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.734951 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.732779 ] } } +, +{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.732507 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.729113 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.728842 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734680 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.735766 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734951 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "346 Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.733593 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.729928 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.727416 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Felton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.727416 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St" }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725855 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.726398 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.726398 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Burrows St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.724972 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723954 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.749544 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.753005 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753276 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751376 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744725 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.752122 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.750697 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742825 ] } } +, +{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.741331 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738345 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.737938 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742553 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743911 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.743911 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.742282 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.739159 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.739499 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.736376 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.752190 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.752326 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.751444 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397051, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.749883 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396193, 37.750019 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Dakota St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street" }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.752326 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.747372 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.395849, 37.747236 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.745947 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752598 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.741671 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.736309 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.737191 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737123 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394133, 37.736852 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736648 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.744250 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744046 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.740924 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.742960 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.742689 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.742417 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.738073 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736309 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.736309 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.739295 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740110 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739974 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739974 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.737191 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737938 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737666 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737666 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737666 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734272 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.732372 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.733186 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.733050 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730131 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.728027 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727348 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727416 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735290 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.735358 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.727348 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727755 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727620 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730403 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730199 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.729113 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729113 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726126 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.726534 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726669 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725244 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725040 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.726805 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.726941 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726398 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.725312 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724090 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.723546 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St" }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721510 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721510 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733186 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.727891 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735766 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735087 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734136 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734001 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.733865 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732236 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391386, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732236 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.730471 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.729385 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729317 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727891 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727891 ] } } +, +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.726941 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.725651 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725312 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.724157 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.722460 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722460 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.722053 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386751, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.755651 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753140 ] } } +, +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387609, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.748933 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.745879 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.746082 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.745743 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387180, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740517 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742553 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383661, 37.742553 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.383404, 37.743911 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383146, 37.743707 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.741128 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.741060 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.740924 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.739024 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385893, 37.736580 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.739974 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382803, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737666 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384176, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738752 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738616 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738752 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.737666 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.736987 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.735833 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732575 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.732372 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733118 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385035, 37.733186 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St" }, "geometry": { "type": "Point", "coordinates": [ -122.383490, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734680 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384777, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.729588 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.729520 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727348 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734001 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.382116, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.380056, 37.733458 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379885, 37.732507 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379713, 37.732372 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.734408 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.378941, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.377138, 37.732711 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.381687, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.380314, 37.730607 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729385 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728706 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.380228, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377138, 37.730064 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.728231 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386751, 37.726126 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727077 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375851, 37.731964 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.375593, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.374048, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.373791, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.372160, 37.729860 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729860 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729113 ] } } +, +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.368727, 37.725312 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725312 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.365465, 37.727891 ] } } +, +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.361002, 37.727348 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714856 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714584 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714584 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.717708 ] } } +, +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716757 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.717436 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717300 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714652 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713770 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714041 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714041 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714449 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469664, 37.714313 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714313 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467260, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.462626, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717708 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714856 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718251 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.713973 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714041 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714720 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Allison St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714449 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716146 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.715671 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.715739 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714449 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.717640 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715128 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713498 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714041 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718115 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713498 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714449 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717843 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.717300 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715331 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.714652 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.718251 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788760 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.775260 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Outbound", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775125 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778517 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Church Station/Outbound", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Church Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784215 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 477, "y": 395 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 326, "y": 791 }, "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 }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832395 ] } } +, +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831785 ] } } +, +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.532363, 37.831819 ] } } +, +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831887 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.527256, 37.832599 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.527213, 37.832463 ] } } +, +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.523437, 37.831650 ] } } +, +{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.527685, 37.829074 ] } } +, +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.530260, 37.825040 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.524424, 37.830463 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.524381, 37.830362 ] } } +, +{ "type": "Feature", "properties": { "name": "Bunker Rd & Field Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.523222, 37.831412 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.523265, 37.831345 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Light House", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.529702, 37.821819 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 792 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.718692 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483096, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483225, 37.718624 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720729 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719643 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479920, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721272 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721068 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474599, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469964, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465243, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463441, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720050 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461123, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720050 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457261, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451081, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.720390 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.721001 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.719846 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SAN JOSE AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720559 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720559 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721272 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431083, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429452, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.721272 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720390 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.718896 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.718760 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405076, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720661 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721136 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.720797 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719914 ] } } +, +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.716757 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716520 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496486, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716248 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714856 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.714551 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.711189 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718488 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478719, 37.717945 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480178, 37.714584 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714483 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477088, 37.717708 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477431, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716791 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715841 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.715976 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709322 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.709118 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474256, 37.717436 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474599, 37.715908 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.715908 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715229 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.715026 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.714822 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472367, 37.717742 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714618 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714754 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714143 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713770 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713600 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714075 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714041 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.713091 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.712989 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471251, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471337, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470994, 37.710918 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470050, 37.714415 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714449 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.714313 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.714279 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714347 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467389, 37.712514 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469449, 37.710375 ] } } +, +{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.710273 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467217, 37.714211 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St&Alemany St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467132, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.711631 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711427 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465072, 37.711835 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464900, 37.711631 ] } } +, +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708745 ] } } +, +{ "type": "Feature", "properties": { "name": "Daly City Bart Station", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.705757 ] } } +, +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468634, 37.707047 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714347 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462325, 37.713193 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.711291 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.710918 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461553, 37.711427 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.711291 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.710137 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.717742 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.717572 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.715976 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.715026 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.714856 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713193 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458892, 37.711495 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714143 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.713973 ] } } +, +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455974, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } +, +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710375 ] } } +, +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454772, 37.710307 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461295, 37.705995 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460694, 37.706165 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459879, 37.706368 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.706606 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706810 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.707353 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.707421 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.718522 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448592, 37.718285 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716248 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716044 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453141, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.713939 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714143 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714075 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448335, 37.710477 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710205 ] } } +, +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442670, 37.714686 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714483 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.711461 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.711733 ] } } +, +{ "type": "Feature", "properties": { "name": "Morse St & Lowell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.710952 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.712514 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.712853 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453313, 37.708643 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452197, 37.708881 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709492 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716520 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716452 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.716655 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440181, 37.716180 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.715671 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439322, 37.715705 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.715128 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437606, 37.714754 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.712446 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711088 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.711156 ] } } +, +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437949, 37.710205 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714449 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.715501 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.716112 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432284, 37.715128 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713498 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.713464 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.714143 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714041 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709967 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710952 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712955 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.712921 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712819 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.712140 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.711223 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.709492 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708881 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432456, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430139, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718149 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428336, 37.717470 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.711733 ] } } +, +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711868 ] } } +, +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.711088 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425675, 37.718285 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.713702 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709322 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.708643 ] } } +, +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712989 ] } } +, +{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.712785 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.712412 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419410, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711868 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710612 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713532 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.712038 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415891, 37.712004 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.711631 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.715026 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714415 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414432, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.712717 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412801, 37.711054 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712751 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.712174 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410483, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.710748 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.710477 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.710375 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709865 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420354, 37.708473 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.708507 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.708202 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.708643 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708372 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707896 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.707693 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.707149 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415547, 37.706946 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.708134 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707081 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.706538 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706300 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709322 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709051 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708270 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.717300 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716655 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716587 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.717063 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.715331 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.715162 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712649 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407393, 37.712446 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.710205 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409539, 37.710001 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.709933 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.711427 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.711495 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711359 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.713804 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.712581 ] } } +, +{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.711902 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716112 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400184, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.716995 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.714686 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714822 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.714958 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401986, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.712446 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Arleta Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712174 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712446 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.712276 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Leland Ave@Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403874, 37.710612 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713532 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.712887 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.712004 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400699, 37.712004 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711597 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.711631 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709865 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "BAY SHORE BLVD & SUNNYDALE AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405076, 37.708847 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404647, 37.709526 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711189 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711223 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394776, 37.710884 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.718251 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387824, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.712785 ] } } +, +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717470 ] } } +, +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.712140 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 791 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.515368, 37.831751 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.514939, 37.831785 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.508802, 37.833005 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502408, 37.836124 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502151, 37.836429 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.833887 ] } } +, +{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493825, 37.833683 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493997, 37.833616 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.833616 ] } } +, +{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835920 ] } } +, +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.833141 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.833073 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832836 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484040, 37.829514 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483525, 37.829446 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.806665 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803952 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803749 ] } } +, +{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.792219 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788454 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788387 ] } } +, +{ "type": "Feature", "properties": { "name": "BOWLEY ST & GIBSON RD", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482281, 37.790252 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792321 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480950, 37.792083 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.807546 ] } } +, +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807241 ] } } +, +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.806563 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807478 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806088 ] } } +, +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.806936 ] } } +, +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472110, 37.806732 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.803477 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.803579 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801036 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467303, 37.799849 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.803036 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.802901 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.800120 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460351, 37.798527 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460222, 37.798425 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.797950 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457776, 37.803681 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456832, 37.803918 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.801646 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456746, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456403, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.803850 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.803681 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.803749 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Transit Center", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.802291 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Transit Center NS-??/BZ", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.802087 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.801578 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.801443 ] } } +, +{ "type": "Feature", "properties": { "name": "220 Halleck St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801714 ] } } +, +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.800188 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.797882 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797950 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.797747 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.801070 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Halleck St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801002 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454085, 37.800765 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.800697 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800527 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455115, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798154 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453399, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799137 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452540, 37.799035 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451854, 37.799374 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.799205 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.798187 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.798052 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804359 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.803613 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445159, 37.803409 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443871, 37.804562 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.803782 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803613 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443442, 37.803647 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.802494 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.801545 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.802833 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.802833 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.800392 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.800324 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.798527 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.798425 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.797136 ] } } +, +{ "type": "Feature", "properties": { "name": "Baker St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.797611 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.800629 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.799849 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.800052 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442756, 37.800052 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard & Richardson Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.798662 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442756, 37.798866 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451682, 37.796695 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Simonds Loop", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451510, 37.796492 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Lyon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.795610 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445331, 37.795915 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447348, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447391, 37.790727 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447047, 37.788963 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791269 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.791202 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Scott St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442584, 37.803782 ] } } +, +{ "type": "Feature", "properties": { "name": "Scott St & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441812, 37.803070 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805410 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441297, 37.800120 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800256 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439666, 37.800459 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439322, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.799306 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.799544 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.800731 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & STEINER ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796865 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Steiner St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796865 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804427 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.804461 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802833 ] } } +, +{ "type": "Feature", "properties": { "name": "BATTERY St & GREENWICH St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.802630 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.802392 ] } } +, +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.802731 ] } } +, +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.805410 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.804868 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803443 ] } } +, +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.805274 ] } } +, +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805139 ] } } +, +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805105 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.801172 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.801307 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436490, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.800731 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.799713 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.799883 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799713 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.799612 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435632, 37.800832 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.800934 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434516, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Webster St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434516, 37.800934 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796797 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.797407 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.797136 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.796967 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797034 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432284, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441983, 37.796322 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442198, 37.796187 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438893, 37.796594 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.796729 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441297, 37.791575 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.791541 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.791710 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788183 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.791778 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788522 ] } } +, +{ "type": "Feature", "properties": { "name": "Green St & Steiner St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795983 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.795949 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.795848 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794898 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436662, 37.794898 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794118 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.794152 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.792524 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433400, 37.792660 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792728 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.792728 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792355 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Washington St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.791439 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.791507 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788454 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.789336 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.788828 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Steiner St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791710 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.789913 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.789743 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.788929 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790116 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509961, 37.779907 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779873 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 48th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.779772 ] } } +, +{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.512965, 37.779093 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.512064, 37.779025 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.779025 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.510304, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.510047, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.510004, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773666 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509875, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.510777, 37.771427 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.771699 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.779975 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.780043 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.507386, 37.779907 ] } } +, +{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504125, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504125, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.779738 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.779840 ] } } +, +{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.780993 ] } } +, +{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504125, 37.779772 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499704, 37.784995 ] } } +, +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499576, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503009, 37.781095 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500691, 37.779466 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.506270, 37.779059 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775362 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503610, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.507987, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.507772, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.773530 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.507043, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771495 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505670, 37.773564 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503610, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503524, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503309, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771766 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.779161 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500606, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499833, 37.779297 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500348, 37.771868 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500091, 37.771902 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.771970 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.510304, 37.767865 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.510476, 37.767356 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.510047, 37.764133 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509189, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.509017, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.508759, 37.760164 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.507386, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.506270, 37.764065 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.506099, 37.764032 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762369 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.762200 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.508116, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Juda St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.507987, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.506013, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758671 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505755, 37.756771 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505584, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.754939 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754769 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502580, 37.760639 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502580, 37.760605 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760775 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499146, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499146, 37.760639 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.779432 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496400, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.781637 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.781637 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492537, 37.783435 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492452, 37.783435 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492537, 37.781603 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492323, 37.782010 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781739 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.781535 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493310, 37.779704 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779738 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779534 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492280, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.488074, 37.783808 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.491422, 37.781671 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.783672 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.783571 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.490606, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.490048, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779738 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.779975 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783672 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489018, 37.781875 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489276, 37.781739 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487130, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486873, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.488031, 37.779873 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487817, 37.780009 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.497430, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775769 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493010, 37.777838 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492194, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.775905 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.775803 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493138, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.776040 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.771936 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.771970 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.772241 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492881, 37.772106 ] } } +, +{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.777737 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775905 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.491851, 37.776040 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.776108 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.775973 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776074 ] } } +, +{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.772173 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489619, 37.772377 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489405, 37.772411 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.772241 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.772479 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772513 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.785877 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.783808 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785673 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783808 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481894, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481680, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.782044 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484727, 37.781942 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780247 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.779975 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782078 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482710, 37.780077 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481380, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478719, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478461, 37.784249 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.782214 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479277, 37.780450 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477517, 37.782282 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.780586 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.778279 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484555, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484384, 37.776176 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482409, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484426, 37.774548 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484212, 37.774311 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.772682 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484083, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483783, 37.772513 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480264, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478118, 37.776515 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477903, 37.776651 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475972, 37.776617 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480607, 37.772648 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.772852 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478461, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.764371 ] } } +, +{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.764540 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495799, 37.762607 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495971, 37.762505 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494726, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.764846 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.490435, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.488718, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.488246, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.761012 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495971, 37.760842 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495971, 37.760775 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.760910 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.760775 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495713, 37.759146 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758875 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761012 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760910 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.757042 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495456, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495284, 37.755176 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753548 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492452, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492666, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489705, 37.761182 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761114 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761182 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.491593, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.490263, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489448, 37.753582 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487302, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.765117 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.765117 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481852, 37.765321 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.765185 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.763149 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765185 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480264, 37.763692 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477732, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477603, 37.765524 ] } } +, +{ "type": "Feature", "properties": { "name": "LINC. WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477260, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "LINCOLN WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19TH AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.763692 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763421 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486529, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486529, 37.761317 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761385 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.761453 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481380, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761589 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761555 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.759723 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481122, 37.757857 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486014, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.753785 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483869, 37.753989 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482753, 37.754057 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483010, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.761521 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.761453 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.757755 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.761657 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477088, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761385 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.761792 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.761725 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761589 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.760164 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759960 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.757857 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480993, 37.756025 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755889 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.754124 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.753955 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.754328 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.756228 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.755991 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.753921 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754124 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.506356, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750935 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.753039 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505584, 37.752903 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505498, 37.752835 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505326, 37.752835 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504468, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753140 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751003 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.749340 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505069, 37.749170 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.747338 ] } } +, +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.507558, 37.745438 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.506700, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747474 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.747440 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.747304 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504983, 37.745607 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.745438 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504811, 37.745438 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502322, 37.753039 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753242 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500176, 37.753140 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.498846, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.498031, 37.753208 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747406 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.501936, 37.747575 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747542 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499533, 37.747677 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.747643 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.743741 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504725, 37.741840 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504554, 37.741671 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.741773 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.740008 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505326, 37.738073 ] } } +, +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.736003 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.737972 ] } } +, +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736139 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504125, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502623, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500219, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.498331, 37.741976 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742112 ] } } +, +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735562 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735528 ] } } +, +{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.735392 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735596 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.735358 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735392 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500734, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.498975, 37.734136 ] } } +, +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "Armory Rd & Herbst Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502322, 37.729724 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } +, +{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499232, 37.731591 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499232, 37.731150 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726771 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.502451, 37.726398 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495112, 37.753310 ] } } +, +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495542, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495027, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.749815 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494855, 37.749578 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.497430, 37.747609 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.747575 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.497473, 37.745947 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.497301, 37.745947 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.745845 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494769, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.747779 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747949 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747813 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746082 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.745845 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.491207, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.748017 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487817, 37.747983 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486658, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487817, 37.746354 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487688, 37.746150 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494683, 37.744216 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743978 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.742349 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742180 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742146 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742282 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494340, 37.742112 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.742248 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.492709, 37.742349 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.740110 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.740245 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.738616 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494082, 37.738379 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494168, 37.736750 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.736546 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.742349 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487645, 37.744521 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.744284 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.742655 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.742587 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742417 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487388, 37.740754 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487216, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.487130, 37.738752 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485585, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485843, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484770, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483439, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748288 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481294, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481551, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750392 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750188 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.748560 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476230, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748695 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.748526 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.748288 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746456 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746659 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745234 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485456, 37.742553 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742689 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.742655 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.742791 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481208, 37.742723 ] } } +, +{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486100, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480435, 37.742859 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.742960 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.743164 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.742960 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741297 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733899 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496829, 37.733695 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496829, 37.733593 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496572, 37.733695 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496657, 37.733526 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.734035 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.733729 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733763 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493696, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.732949 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.730335 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.491593, 37.734136 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.491593, 37.733831 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733967 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.489276, 37.734238 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734374 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485843, 37.734136 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483954, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483954, 37.734204 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482238, 37.734544 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734272 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729622 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.486272, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734646 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.734408 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477260, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728536 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.728027 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.727993 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728061 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.730437 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.728876 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.724123 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484899, 37.724225 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727111 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.726975 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.718692 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483611, 37.722766 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.722494 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.482152, 37.721747 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483096, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483225, 37.718624 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720729 ] } } +, +{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727178 ] } } +, +{ "type": "Feature", "properties": { "name": "280 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.726907 ] } } +, +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.725956 ] } } +, +{ "type": "Feature", "properties": { "name": "190 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.725855 ] } } +, +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725956 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.726330 ] } } +, +{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719643 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479920, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.784249 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473269, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio & California Street", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472539, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784588 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.784588 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.784452 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.782383 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473955, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.782485 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782485 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471166, 37.782689 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.780721 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780518 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472196, 37.780789 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780687 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780586 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470822, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780823 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469149, 37.784656 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467046, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466702, 37.784452 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464728, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469020, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.782689 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467647, 37.780993 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.782892 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.782892 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "name": "7th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.783130 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467303, 37.780789 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471938, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.776855 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470307, 37.776990 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474170, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472196, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.777058 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.777194 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464986, 37.775260 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464814, 37.775362 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469835, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773361 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466102, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.773462 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773462 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.773632 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464471, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784724 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.785165 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462282, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785707 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.783231 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.783096 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.781128 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459836, 37.783096 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781061 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460952, 37.781264 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.786894 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456832, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.785673 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785606 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456660, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Commonwealth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Maple St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455201, 37.786250 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453742, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "name": "ARGUELLO BLVD & EUCLID AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783265 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783265 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.781875 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.781434 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.781366 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.781162 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781095 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.781264 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781535 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779161 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464042, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.777262 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776990 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463956, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463784, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461767, 37.777397 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464128, 37.773666 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.773734 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.773734 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463698, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773530 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.773937 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773836 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.777465 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Turk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.777465 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.777058 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455373, 37.777635 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455029, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458291, 37.774412 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.774277 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454858, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.774616 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.774751 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453871, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454171, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.770850 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765626 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765456 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.765728 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.765660 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470350, 37.762064 ] } } +, +{ "type": "Feature", "properties": { "name": "TEA GARDEN DR/DeYoung Museum", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468934, 37.770545 ] } } +, +{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765897 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765762 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762064 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.765999 ] } } +, +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466531, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.764303 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.763794 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764099 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St. & 9th Ave.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764099 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave. & Irving St.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466702, 37.762233 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762132 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761928 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.761928 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.759316 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Avenue at Lawton Street", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.761792 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470565, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.759146 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.759146 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756975 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.756364 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.756296 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.755244 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.754260 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754124 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469535, 37.761996 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469535, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758298 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470050, 37.758196 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760232 ] } } +, +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.758535 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.758535 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758535 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.756669 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465672, 37.756500 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.754803 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.754633 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462454, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461896, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464299, 37.764099 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464042, 37.764167 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.762335 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464128, 37.762200 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462840, 37.762403 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764303 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.766135 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460737, 37.762742 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460523, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave &4th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460952, 37.762539 ] } } +, +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762776 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457948, 37.765999 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.764439 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458034, 37.764371 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "500 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.763319 ] } } +, +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.763319 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.763794 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456746, 37.763726 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.766203 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454686, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.764337 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758603 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.758467 ] } } +, +{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.758434 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463140, 37.758705 ] } } +, +{ "type": "Feature", "properties": { "name": "455 Warren Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461896, 37.757721 ] } } +, +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756771 ] } } +, +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463784, 37.754667 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754905 ] } } +, +{ "type": "Feature", "properties": { "name": "400 Warren Dr E", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461467, 37.756907 ] } } +, +{ "type": "Feature", "properties": { "name": "345 Warren Dr E", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461295, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.754464 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "117 Warren Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755346 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.755312 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786487 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451940, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.784215 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "name": "Walnut St & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448506, 37.787505 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449880, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448249, 37.784995 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453055, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.781603 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.782044 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447991, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787200 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.786250 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.785232 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446189, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446189, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443614, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.787607 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447305, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.782723 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782960 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453485, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451682, 37.778110 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.778008 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778347 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.778245 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.775396 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449279, 37.775362 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Parker Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453141, 37.774921 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452369, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "Shrader St & Grove St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451081, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773361 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773598 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449450, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778754 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.778551 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.778754 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.777533 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.778754 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.775667 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775905 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.775905 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.775701 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.778958 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443614, 37.779093 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443185, 37.777262 ] } } +, +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Central Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Lyon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443442, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.773802 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447305, 37.773734 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.774005 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.774073 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.773937 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.773937 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.771970 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.774073 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.774209 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.774277 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774412 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.787980 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440009, 37.786284 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.785165 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439795, 37.785334 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439752, 37.785300 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.785266 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.785402 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.783842 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & St Joseph'S Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.779500 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783435 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.783367 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.783164 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783164 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.781603 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439065, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783638 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438807, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.780552 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438979, 37.780450 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437177, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.780721 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.785945 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435031, 37.785809 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.788047 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.787708 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433143, 37.786148 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786080 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785809 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784249 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784724 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.781095 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.780925 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432714, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432628, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781739 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781535 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781332 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431941, 37.779873 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779297 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779161 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.777431 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440181, 37.777533 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.777635 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438593, 37.777804 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777737 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438293, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438421, 37.777669 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.774582 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770749 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Baker St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440267, 37.770918 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.774718 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.774887 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.771291 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.778144 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.778279 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.775159 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431684, 37.778551 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.778347 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.775430 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432456, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437091, 37.771054 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436748, 37.771224 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.771766 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453055, 37.769154 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.769324 ] } } +, +{ "type": "Feature", "properties": { "name": "Shrader St & Haight St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.769324 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453485, 37.768340 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.768238 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766406 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Frederick St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766440 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769595 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.769697 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Waller St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766813 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.765524 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.765321 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.764540 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.764439 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.765931 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.765762 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.764914 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449708, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769935 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769154 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.770240 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.770104 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769019 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447906, 37.767085 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Frederick St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447906, 37.766949 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.767254 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.767288 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446446, 37.767153 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.767153 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.770342 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445331, 37.770206 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445159, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Central Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.770511 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767526 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.767356 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766305 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446103, 37.764303 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "name": "ASHBURY ST & CLAYTON ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.763014 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.765456 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "414 Roosevelt Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764507 ] } } +, +{ "type": "Feature", "properties": { "name": "415 Roosevelt Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.764507 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.763421 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.763726 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.763726 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449193, 37.761725 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761691 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449064, 37.760910 ] } } +, +{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447691, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.760910 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Clayton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.760876 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.758942 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.758807 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758671 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445846, 37.758671 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761317 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444043, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "320 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445331, 37.759926 ] } } +, +{ "type": "Feature", "properties": { "name": "341 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.759892 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444472, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "210 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.761792 ] } } +, +{ "type": "Feature", "properties": { "name": "211 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.761657 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Danvers St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Danvers St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760232 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.759791 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.757789 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444472, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Clayton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444043, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444129, 37.757484 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443442, 37.756432 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.756398 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.755346 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755482 ] } } +, +{ "type": "Feature", "properties": { "name": "795 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.754124 ] } } +, +{ "type": "Feature", "properties": { "name": "800 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.753989 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.768679 ] } } +, +{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768815 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.768035 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439494, 37.766508 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 37.766813 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way&Buena Vista Ter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438293, 37.766712 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766847 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767288 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767153 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441039, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.762064 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762403 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.769188 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.768951 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.767390 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767288 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.767424 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769392 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.769222 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769120 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.769120 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.767526 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.767390 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.765626 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764167 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.762607 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.762471 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.762471 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762539 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762403 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762369 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.762505 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.763896 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.763964 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Noe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761725 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.760571 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438293, 37.761589 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 37.760639 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Eureka St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760775 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.760707 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.759044 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440438, 37.755041 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.754057 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.754023 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Eureka St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.757551 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.755957 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.755821 ] } } +, +{ "type": "Feature", "properties": { "name": "21st St & Douglass St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755346 ] } } +, +{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.753514 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.754226 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.760842 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.760842 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.759384 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.759146 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.757789 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432885, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Collingwood St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.757619 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 21st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.756092 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 21st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.755957 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.754633 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.754396 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.750528 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472067, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750799 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474084, 37.748797 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474084, 37.748661 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.748831 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473826, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.748729 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473912, 37.746965 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746761 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.745098 ] } } +, +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473483, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748899 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470737, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470479, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470307, 37.745030 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749035 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749102 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466531, 37.750697 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.750867 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466445, 37.749170 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.749340 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.748831 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467046, 37.748967 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475457, 37.743096 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743062 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473440, 37.743198 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741501 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741196 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471423, 37.743062 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743130 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470307, 37.743402 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.743164 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471209, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.739024 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.739193 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.737564 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475157, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736478 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470393, 37.736376 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.470050, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468805, 37.741433 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468462, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.741162 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741094 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466102, 37.741026 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.740924 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740958 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740958 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Arrive", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740924 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station Inbound", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.741162 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.740754 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740788 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738107 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738107 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.738073 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466960, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466960, 37.739601 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.739668 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.739465 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.750935 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458377, 37.751715 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456918, 37.749849 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.751478 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751614 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.751342 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458892, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748288 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA BLVD & 19TH AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.747847 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Dewey Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.747270 ] } } +, +{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.747813 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.745370 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457175, 37.745302 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.747813 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746388 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455587, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455544, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453828, 37.745777 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.745709 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.740415 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463698, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463441, 37.740110 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740245 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460093, 37.739363 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740211 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.740076 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460008, 37.739193 ] } } +, +{ "type": "Feature", "properties": { "name": "126 Miraloma Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461467, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461295, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.744148 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456403, 37.744012 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.741637 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.743469 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455459, 37.743096 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455201, 37.743232 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.742859 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.741976 ] } } +, +{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736682 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.736750 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.734510 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475200, 37.734680 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475200, 37.734544 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474513, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.732779 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.732473 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.732134 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473826, 37.731795 ] } } +, +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471509, 37.735053 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471852, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471852, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471938, 37.734306 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734306 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.734306 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.734917 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471251, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.731184 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.731150 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474341, 37.731184 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731048 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472453, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471852, 37.731252 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731285 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731319 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469792, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.734951 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468076, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733186 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465501, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.729962 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469449, 37.729928 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469106, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728400 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467561, 37.728299 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.727246 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474856, 37.727178 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474685, 37.727178 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721272 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721068 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474341, 37.721340 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474599, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.721476 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727246 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.727212 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727212 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.469964, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465243, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464557, 37.732270 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463956, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460566, 37.735324 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459664, 37.734544 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734374 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.733695 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729962 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.730064 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460437, 37.730539 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.733593 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.732609 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732609 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457776, 37.732236 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.732100 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.730708 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.731116 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457304, 37.731116 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.730878 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731252 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455630, 37.731455 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726024 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.726024 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461381, 37.724938 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461381, 37.724904 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Dorado Ter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.724972 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.463441, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720050 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.461123, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724395 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.724259 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458291, 37.724259 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.723784 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723445 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723445 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454000, 37.723445 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720050 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457261, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.721917 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721747 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453055, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Panorama Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452025, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.751206 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.749951 ] } } +, +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748899 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745777 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452369, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452111, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.744996 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748933 ] } } +, +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.745947 ] } } +, +{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446103, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "74 Crestline Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446189, 37.751749 ] } } +, +{ "type": "Feature", "properties": { "name": "40 CRESTLINE DR", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.750392 ] } } +, +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445760, 37.750426 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "name": "925 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.752089 ] } } +, +{ "type": "Feature", "properties": { "name": "956 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.751681 ] } } +, +{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.749306 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.749136 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442756, 37.750697 ] } } +, +{ "type": "Feature", "properties": { "name": "6 Portola Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.749951 ] } } +, +{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.748017 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447906, 37.746456 ] } } +, +{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746659 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.746354 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444901, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444901, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.747033 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444215, 37.747134 ] } } +, +{ "type": "Feature", "properties": { "name": "120 Portola Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.748967 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.746897 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Portola Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.746659 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.744352 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743503 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Evelyn Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451167, 37.743062 ] } } +, +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744487 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450652, 37.742587 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741739 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450480, 37.741840 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449236, 37.740958 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.740822 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449193, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451510, 37.737802 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740211 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450480, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446017, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.741094 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447991, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447734, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.737700 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.737463 ] } } +, +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445846, 37.736852 ] } } +, +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.736784 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.736478 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736614 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442584, 37.752496 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.752292 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "name": "Fountain St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441640, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.751037 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440524, 37.750969 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.749306 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437606, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Eureka St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438378, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442498, 37.748526 ] } } +, +{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440181, 37.746931 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.745268 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.745234 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Diamond St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.751071 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.749645 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.749476 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.752903 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.752089 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751885 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.751376 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434001, 37.751206 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.751376 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751342 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.749611 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Noe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.748695 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.747847 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.747881 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.747066 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.746252 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.745641 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.745472 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744691 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 26th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.743605 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437520, 37.743639 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.743266 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.743096 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.741840 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.740279 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740211 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436919, 37.738616 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436662, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.738311 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.738413 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.738786 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.740008 ] } } +, +{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.738345 ] } } +, +{ "type": "Feature", "properties": { "name": "164 Addison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.736071 ] } } +, +{ "type": "Feature", "properties": { "name": "33 Moffitt St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.736818 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734204 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448936, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731455 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451425, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451253, 37.731455 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451253, 37.731455 ] } } +, +{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } +, +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729962 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.727857 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.727620 ] } } +, +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.728434 ] } } +, +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728299 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.731387 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446446, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.735528 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.734001 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.733967 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445588, 37.734001 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.731523 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.726024 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725549 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724090 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723546 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723852 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451167, 37.723105 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.451081, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721917 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.722121 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.721985 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449279, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.720390 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.723003 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.721001 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.719846 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SAN JOSE AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720559 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720559 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } +, +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444901, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.722834 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.444386, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440095, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441897, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731523 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440009, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440009, 37.729011 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.728977 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.728808 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.727755 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.731523 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.730369 ] } } +, +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730301 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437177, 37.731387 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.733831 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.733933 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431898, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.733492 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.733390 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434001, 37.733593 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.732406 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433400, 37.732541 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437005, 37.731319 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441640, 37.726839 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.725753 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442412, 37.725889 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725889 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725685 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725685 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.725956 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441211, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441339, 37.723377 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723275 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723445 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723682 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.723580 ] } } +, +{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439752, 37.722053 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721272 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.723377 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Norton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.724293 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.724667 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.724599 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.724701 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.724531 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.723954 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.723920 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723377 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Francis St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.726364 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726364 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.726160 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.723954 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721476 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423186, 37.806359 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.806359 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.807038 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.806732 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421899, 37.805580 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.806699 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.806631 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.805715 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805647 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.805817 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.805647 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808326 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.807241 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806156 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.805512 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417607, 37.805478 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417178, 37.806054 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Powell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.808597 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808089 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808021 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.807411 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.806563 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.807851 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.807784 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.808360 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.807614 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.806665 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.806495 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.805749 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.806868 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.807038 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801477 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.801511 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.801341 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.801680 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428164, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.801816 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.802121 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.802019 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.797645 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.797781 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428079, 37.800934 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800866 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427392, 37.798052 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798221 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425418, 37.805105 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425418, 37.804969 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425246, 37.805173 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805037 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425332, 37.804834 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave&North Point St SE-NS/BZ", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425160, 37.804800 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.804291 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.804122 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.805308 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423487, 37.805241 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.805003 ] } } +, +{ "type": "Feature", "properties": { "name": "Francisco Street & Polk Street", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423787, 37.803376 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802426 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802324 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802358 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802189 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424645, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805410 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.803647 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803477 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.801477 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.800493 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800324 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.798594 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424130, 37.798459 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798459 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.798662 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.799001 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.798798 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.798832 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422414, 37.798696 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Green St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797747 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.796967 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Octavia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.791914 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.790523 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.790354 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.790184 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790693 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427135, 37.790693 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796424 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Franklin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794898 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.794898 ] } } +, +{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.794932 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794796 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.796187 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.795271 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421470, 37.795102 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423358, 37.793948 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422414, 37.793067 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.792456 ] } } +, +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421298, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.793202 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.791032 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Franklin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424474, 37.791914 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.792117 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.791439 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.791371 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.791168 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422242, 37.790455 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422328, 37.790354 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.791914 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.791507 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790455 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420783, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790489 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.789506 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.804766 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.804800 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802901 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.802833 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416148, 37.804528 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.805342 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.805241 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804528 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804528 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804528 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804528 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415977, 37.804189 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.801002 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.801002 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.800222 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.798933 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.800188 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799273 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418981, 37.799239 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799171 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798357 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.798323 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797407 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799442 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.799340 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799544 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.799679 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.804969 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Francisco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.804393 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.803782 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803749 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.803409 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.802833 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.802697 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801816 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.802087 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.804969 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.804800 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411427, 37.802765 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.802935 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.801172 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Filbert St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.801239 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409711, 37.803138 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.799747 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.799883 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412715, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.799951 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Union St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.799985 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.800120 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Union St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800052 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.799035 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800493 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.800392 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.800188 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.800392 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.800426 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.798187 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Broadway", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.797340 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Broadway", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.797204 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.795339 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.795373 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.795339 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.795542 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.795407 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418294, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.794627 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794423 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.793406 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.792524 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.794559 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418036, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.795576 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794864 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794661 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.792863 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.791710 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790828 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.790862 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.790693 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.789675 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.789540 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789370 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417436, 37.791982 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.791846 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791100 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791032 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792049 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415590, 37.791269 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.791100 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.790184 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416921, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415462, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.789234 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.795949 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.795780 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414861, 37.795034 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795983 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.796153 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.795271 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414689, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.796119 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.796390 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.796187 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.795712 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.795610 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795441 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796390 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796560 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.795305 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Powell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.794627 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Washington St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.794491 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.792660 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Powell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414174, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791473 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.791541 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.788319 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788658 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.791710 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410998, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410955, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.788861 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.808224 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.806088 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.807343 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807241 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.807173 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.806936 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.806800 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406020, 37.806631 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.806597 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.803511 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803376 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802358 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802223 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.801409 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803715 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.803545 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.802731 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "name": "COIT TOWER", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.802664 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Filbert St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800527 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.799273 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.799205 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799374 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.800595 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.800697 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.797204 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.796797 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406106, 37.800765 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.798120 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.797611 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Grant Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406363, 37.797814 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.797001 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.797306 ] } } +, +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.797068 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.797340 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Kearny St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797170 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.805207 ] } } +, +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.805139 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805037 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.803918 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Filbert St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402930, 37.802324 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.802969 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Union St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402759, 37.801409 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Filbert St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.802155 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.802969 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801273 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Green St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.799679 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.798120 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.797407 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797543 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.797781 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.800595 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Broadway", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.798323 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400784, 37.796865 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.796729 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Washington St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.794627 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.796255 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.795373 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.793745 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.793033 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.792863 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.793745 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.794084 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.796119 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796051 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.794695 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.793406 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.792490 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.794491 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Kearny St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404561, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.792863 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Kearny St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792728 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Kearny St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792592 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792083 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.792219 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792287 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.792117 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.792117 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.791100 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.792321 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bush St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408853, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bush St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Powell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.789133 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Post St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.788387 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Post St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788183 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.789947 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789608 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.789472 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Powell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.788285 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788556 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Kearny St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.789811 ] } } +, +{ "type": "Feature", "properties": { "name": "POST & GRANT", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.788590 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403703, 37.795915 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401643, 37.796051 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402759, 37.794695 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.794016 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792931 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.794830 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Front St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795102 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.794288 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793304 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & SANSOME ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793304 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.793270 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.790998 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403703, 37.789743 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.788997 ] } } +, +{ "type": "Feature", "properties": { "name": "POST & MONTGOMERY", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.788997 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402501, 37.788488 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Pine St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.792287 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.790286 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.790354 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.790354 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Battery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.791303 ] } } +, +{ "type": "Feature", "properties": { "name": "BUSH ST & Battery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399669, 37.791303 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Battery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.791100 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 1st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 1st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399154, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 2nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789336 ] } } +, +{ "type": "Feature", "properties": { "name": "2ND ST & MARKET ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sansome St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.788929 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788285 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.798967 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.799544 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & THE EMBARCADERO", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397780, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.798900 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797814 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.797068 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 1", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.797204 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.795407 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.794491 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792490 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.793406 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Davis St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.792524 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & Pine St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397523, 37.792592 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793542 ] } } +, +{ "type": "Feature", "properties": { "name": "Drumm St & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793982 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Main St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792999 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Beale St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.793033 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793202 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396193, 37.793474 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796695 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394433, 37.795000 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795102 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.795034 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Ferry Building", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.794830 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.793745 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Steuart St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Steuart St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "EMBARCADERO & ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "STEUART ST & FRANCISCO ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.792524 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794423 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.794152 ] } } +, +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.794220 ] } } +, +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.794220 ] } } +, +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart & Donchee Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793915 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394004, 37.792660 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.793474 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Stt & Steuart St NW-FS/SB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793202 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.792999 ] } } +, +{ "type": "Feature", "properties": { "name": "Front & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Front St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791914 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791642 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Fremont St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789404 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Natoma St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/RAMP S", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.789641 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.789472 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.788522 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.791507 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.791982 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Main St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.791982 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission & Main St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394776, 37.791846 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Beale St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394347, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790828 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St. & Beale St.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790591 ] } } +, +{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.790761 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.790591 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.790591 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.790557 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Main St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790421 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789947 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395892, 37.789879 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.789201 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.789947 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.789811 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.789811 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.789811 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.789709 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St&Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793101 ] } } +, +{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792728 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392545, 37.791405 ] } } +, +{ "type": "Feature", "properties": { "name": "Hward St&Spear", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392545, 37.791168 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391086, 37.792355 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391086, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393103, 37.788861 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.788658 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.790795 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790761 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389884, 37.790557 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.790489 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.789608 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789675 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828192 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.826938 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.829853 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.373490, 37.829819 ] } } +, +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.371945, 37.828396 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 13th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.371945, 37.828328 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & 12th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.376323, 37.825480 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.375636, 37.824463 ] } } +, +{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.375422, 37.824158 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823243 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue C", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823413 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue D", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.372718, 37.824057 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St. & Avenue D", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.373919, 37.823514 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue E", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.371473, 37.824599 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 13th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.829277 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 10th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827311 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.370057, 37.825209 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.369928, 37.825243 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.368941, 37.823616 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.366967, 37.825311 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.371817, 37.816022 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.371430, 37.816226 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.369542, 37.818497 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822362 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821921 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.366323, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue H", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.366109, 37.819921 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.370143, 37.818328 ] } } +, +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813073 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla St & Treasure Island Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.370915, 37.813242 ] } } +, +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.371001, 37.813140 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813140 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.812022 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.811818 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.822226 ] } } +, +{ "type": "Feature", "properties": { "name": "California Ave & Avenue M", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.364178, 37.820735 ] } } +, +{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.364821, 37.811988 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.364564, 37.811852 ] } } +, +{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.363791, 37.811683 ] } } +, +{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.364306, 37.811344 ] } } +, +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.363362, 37.810496 ] } } +, +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.363405, 37.810394 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429624, 37.786487 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.784656 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.786657 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428164, 37.784859 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427821, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Octavia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.781909 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.781773 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.782010 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.787200 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425075, 37.785436 ] } } +, +{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785063 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.787844 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.785673 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421470, 37.785606 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.784656 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.782383 ] } } +, +{ "type": "Feature", "properties": { "name": "808 McAllister St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425547, 37.779466 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.779704 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Gough st", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423444, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.782485 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.781942 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780959 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.780077 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.778618 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430482, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.776990 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776855 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775837 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.776108 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.775803 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.776040 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.776040 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426963, 37.779195 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.779331 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777397 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774277 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.773768 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430739, 37.772139 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772207 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430482, 37.772004 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430353, 37.772038 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.772445 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "785 Mcallister St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425203, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Octavia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776515 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.777737 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "Fell St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.775973 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772920 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773802 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Octavia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.773836 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Laguna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424645, 37.770952 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.773089 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Franklin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420955, 37.774175 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccoppin St & Gough St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420783, 37.771766 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786555 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.786793 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786148 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.785843 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.787064 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.786352 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.787233 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417779, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.782282 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.782180 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.779975 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.779704 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.781230 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.780314 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.780179 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417693, 37.783367 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417436, 37.783231 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.783265 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417178, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417092, 37.781705 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.783469 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782621 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415805, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.780518 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780586 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416835, 37.780382 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415891, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.780721 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.780789 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414861, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.787437 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.786555 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414689, 37.786420 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Post St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413316, 37.786759 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.786860 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414432, 37.785538 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.784724 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413144, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.785809 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.787878 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.787166 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.787200 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.785843 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.783672 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782824 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.781671 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.781061 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St N", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412457, 37.780654 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412457, 37.780552 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.782078 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409883, 37.783401 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Taylor St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410226, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.781162 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.781298 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780314 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.778686 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419753, 37.778177 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Polk St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418294, 37.778381 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775294 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "SOUTH VAN NESS AVE & 12TH ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.775091 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775362 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778890 ] } } +, +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.778754 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416835, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.777601 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.777601 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 9th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.777397 ] } } +, +{ "type": "Feature", "properties": { "name": "9TH St AND MARKET St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.777363 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775939 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & 12TH ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774955 ] } } +, +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418466, 37.772988 ] } } +, +{ "type": "Feature", "properties": { "name": "150 Otis St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "name": "Otis St & 12th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774582 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774311 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.774209 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415376, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 8th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778618 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.778788 ] } } +, +{ "type": "Feature", "properties": { "name": "8TH St AND MARKET St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.778483 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.779093 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412715, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.776448 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.778958 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.779161 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St&Howard", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 8th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.775125 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772106 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413745, 37.772004 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.770850 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.773903 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.774751 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 9th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.772411 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429709, 37.770240 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769290 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.769324 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.767526 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.767662 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Church St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.767763 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767831 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 14th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Church St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.767662 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767254 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.767356 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.769799 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.768883 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767763 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.767831 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767390 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767288 ] } } +, +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.766271 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 15th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428808, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.764371 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764405 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.764574 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764574 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.762810 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.762810 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.770579 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.769799 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.770138 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.768374 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.767865 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764710 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.764846 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.766271 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.764846 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.764642 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.763421 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.763082 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430482, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428422, 37.761453 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761385 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.761250 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428164, 37.761182 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759791 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427907, 37.758264 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428079, 37.757382 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.757450 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426877, 37.757246 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756635 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756432 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.754769 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427735, 37.754599 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425933, 37.761385 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.761521 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.761996 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.761657 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.761419 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758264 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.758739 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.757144 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.755550 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755074 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.753412 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 13th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.770477 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.768611 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.768204 ] } } +, +{ "type": "Feature", "properties": { "name": "15th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.766678 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.767153 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768476 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415547, 37.768476 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.766203 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.765117 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.765117 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness &16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417607, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765253 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765049 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762132 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.763828 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412286, 37.770376 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.769799 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.769120 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410741, 37.769324 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.768103 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768442 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.765524 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.762200 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.765728 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.764032 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.763149 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410140, 37.762946 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.759791 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.758162 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 18 th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417092, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417006, 37.758942 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.758875 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.757517 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.755821 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.755176 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755719 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416449, 37.755482 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.759010 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.758976 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.758807 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.761657 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410097, 37.760571 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759316 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414346, 37.755957 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755448 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.787471 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Ellis St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.785063 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason & Turk", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.783910 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784317 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408423, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis street & Powell street", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.785436 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Ellis St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL & MARKET TURNTABLE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell/Market", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.784452 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.784147 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407994, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786657 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.786386 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Ellis St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Stockton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.785843 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.785538 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Mason St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.783401 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St &Stevenson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.783503 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mary St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781196 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782960 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782756 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.782723 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.781434 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.781230 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403531, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Market St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403188, 37.787708 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402501, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Stevenson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786386 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.786352 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Minna St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.784656 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.784249 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.787878 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.786216 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399240, 37.786080 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Third St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.780314 ] } } +, +{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.780450 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 5th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403102, 37.780382 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.780687 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.777940 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.776855 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 7th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.776651 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.778618 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.777329 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 7th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 6th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.773870 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.773530 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.772547 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.771461 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.774684 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404990, 37.774582 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771563 ] } } +, +{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.779297 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 6th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402244, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 5th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.777940 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.776448 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.772038 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771699 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401643, 37.771699 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.773666 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.773462 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 2nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398124, 37.786759 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398124, 37.786555 ] } } +, +{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785741 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785741 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.785334 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787437 ] } } +, +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.784181 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd ST & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Perry St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782689 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.779466 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.783299 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779975 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 1st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.786182 ] } } +, +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & Main St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784588 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391944, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390571, 37.780687 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388339, 37.783604 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389884, 37.779704 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389541, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396665, 37.778449 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.776312 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397180, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397180, 37.775430 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.777262 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394433, 37.777431 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777194 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.777024 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.777058 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.777024 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776312 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776380 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393918, 37.776312 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776278 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394347, 37.776074 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Berry St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775769 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397952, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773123 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779297 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392459, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd Street & King St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778110 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Berry St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.775294 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776176 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389970, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772988 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.771156 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.768442 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.768272 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.768272 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.766339 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405505, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Vermont St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.764574 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.763285 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.762200 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 8th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770240 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Townsend St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.769901 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769765 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.768747 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402844, 37.768578 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402930, 37.767458 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.765931 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "17TH ST & KANSAS ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766339 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766135 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.765999 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401643, 37.766067 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401729, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.764914 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.763557 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.766271 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399669, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.764914 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401385, 37.763489 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.762200 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.761657 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.759078 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404218, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757517 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.756194 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755719 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754158 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757484 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.757178 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755889 ] } } +, +{ "type": "Feature", "properties": { "name": "Sf General Hospital", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.755210 ] } } +, +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.753989 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404046, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.761996 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404046, 37.759655 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Vermont St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403874, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402930, 37.759689 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759553 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402244, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.759451 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Southern Heights Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.759655 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.758128 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400784, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & Southern Heights Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759723 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.756873 ] } } +, +{ "type": "Feature", "properties": { "name": "176 Rhode Island St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756160 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.754464 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.754396 ] } } +, +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.754464 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402501, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754498 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754328 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.753378 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.757450 ] } } +, +{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.757348 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Carolina St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.757314 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.757178 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.755923 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.755753 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754871 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.754837 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Missouri St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.766508 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Missouri St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.766406 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766644 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397780, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.762607 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762437 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.762607 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.762844 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393231, 37.762742 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.770511 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & 4th Street", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.766847 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & 4th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "name": "1731 3RD ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769731 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389455, 37.769324 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769561 ] } } +, +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.769052 ] } } +, +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "name": "1730 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389369, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.766576 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.766576 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.762878 ] } } +, +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.764371 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764405 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.764439 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.762912 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.764167 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.763353 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.762674 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.761317 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.761148 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398381, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.759960 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & 19th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761419 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.760130 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.760096 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.759994 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395978, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.758128 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Texas St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.760028 ] } } +, +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395205, 37.758264 ] } } +, +{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398038, 37.757450 ] } } +, +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.755957 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.754803 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.754667 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753548 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Coral Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754667 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395720, 37.756839 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.757653 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395806, 37.755448 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395720, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "14 Dakota St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "101 Dakota St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757755 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391772, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.760775 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.760605 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760571 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757857 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.757789 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388511, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd ST & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.758060 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758162 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388082, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393060, 37.757585 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.755142 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.755007 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.755685 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388082, 37.755074 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755312 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755278 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.749374 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427135, 37.749170 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.746524 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.744929 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.746999 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426877, 37.746795 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425332, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425246, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.751851 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 30th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743605 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742825 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426620, 37.742655 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.742044 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426534, 37.742146 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426534, 37.742112 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742112 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426448, 37.742214 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426362, 37.742146 ] } } +, +{ "type": "Feature", "properties": { "name": "46 Addison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.736648 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.736444 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.736343 ] } } +, +{ "type": "Feature", "properties": { "name": "Randall St & Whitney St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427907, 37.737123 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427735, 37.737123 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424474, 37.742180 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.743809 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.741060 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.741026 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425675, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425504, 37.739635 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.739804 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.739736 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.739397 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose& Randall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.739736 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.738990 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.738854 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.737463 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.736207 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740211 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740279 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752190 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.752326 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.752190 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.751953 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.750290 ] } } +, +{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.750663 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.749510 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752326 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752496 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416148, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416148, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.749102 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 26th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.748661 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420354, 37.747983 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.748560 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746931 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.746727 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.746659 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Power St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419410, 37.746252 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Fair Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.745913 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Valencia St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.748288 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.752564 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752598 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752428 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.751003 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749238 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.749238 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752598 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748492 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom & Cesar Chavz St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413745, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746863 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Alabama St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.748424 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744284 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.739295 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418466, 37.739295 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.739024 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416406, 37.739092 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413144, 37.744182 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.744148 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410483, 37.744352 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744284 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.741230 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.741501 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.741840 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.738990 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413316, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.738786 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.738243 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.738243 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.737157 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.736037 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412114, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411427, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.740076 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.739804 ] } } +, +{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733220 ] } } +, +{ "type": "Feature", "properties": { "name": "Still St & Lyell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.733492 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.733458 ] } } +, +{ "type": "Feature", "properties": { "name": "4080 Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427993, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.733729 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.730641 ] } } +, +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429667, 37.731387 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429280, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429709, 37.730437 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.728706 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728604 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.728672 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.730844 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428808, 37.728468 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.728604 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728604 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Murray St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425933, 37.734035 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735901 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424474, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.735256 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.735256 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.735087 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.728706 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426105, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.421899, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.728740 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724734 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.723988 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.723105 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431083, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.722494 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429452, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721544 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.721374 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.721272 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426105, 37.724667 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424388, 37.724734 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.724734 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725074 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725210 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725583 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725413 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720390 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.735800 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.735121 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Arnold Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.734951 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.735053 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "name": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732609 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417006, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.734951 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416921, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.417779, 37.732813 ] } } +, +{ "type": "Feature", "properties": { "name": "909 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.732847 ] } } +, +{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.732541 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419410, 37.729147 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.729011 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.729011 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.728842 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415032, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.415032, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellsworth St & Crescent Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734680 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.735800 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.734951 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "346 Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.733593 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.734917 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411170, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.729860 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.729928 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.727416 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Felton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.727382 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.730912 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.725855 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.725956 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.726398 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.726364 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.718896 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.726466 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.725142 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413402, 37.725006 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.723920 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412887, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723241 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.723105 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.722698 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722834 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.718760 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.752835 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.749510 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.753005 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.753242 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751410 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409539, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Bryant St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744725 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402244, 37.751885 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.752122 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 26th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.750731 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.750731 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.750867 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400012, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747134 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403703, 37.746422 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743062 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742859 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.743334 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742859 ] } } +, +{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.741331 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.739668 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.739533 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.738379 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.739872 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.737938 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742519 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.741060 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743944 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398810, 37.743911 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.741501 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.738786 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.739125 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400527, 37.739533 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398896, 37.736376 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.752292 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752224 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752156 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 26th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.752564 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.751444 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397051, 37.749035 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.749883 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396235, 37.750019 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Dakota St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.752496 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.747338 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395892, 37.747270 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393918, 37.746150 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393832, 37.745981 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752631 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752564 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387738, 37.750392 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396922, 37.742791 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.741705 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.738243 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.736309 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.737225 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737089 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.737157 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.736207 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736852 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736648 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394519, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.744250 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390485, 37.744046 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.740687 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388597, 37.742960 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.742994 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742723 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742723 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742723 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742689 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388167, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391429, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391257, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.738073 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737564 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737530 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736343 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736275 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.736309 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.739329 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389112, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389112, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.740110 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.739974 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739974 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.737225 ] } } +, +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.737938 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.737938 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.737632 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.737632 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737632 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Boutwell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405591, 37.734238 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.732406 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.732338 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.733288 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.733220 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404819, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732949 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.733050 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.732066 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731319 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408853, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730098 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404990, 37.728027 ] } } +, +{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.727993 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727314 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727450 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.734170 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735256 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.735324 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "name": "Thornton Dr&Scotia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399240, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727518 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403531, 37.727314 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727755 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.727654 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728468 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.730369 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Williams Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730199 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.729113 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.729113 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726296 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.726126 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.726534 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.726669 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725210 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.723377 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408423, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407994, 37.725074 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.726805 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.726907 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405076, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403016, 37.726364 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.725312 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724090 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724191 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.723546 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400184, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.723275 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720661 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401385, 37.721544 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.721476 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721544 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.733288 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.733186 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731998 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.731795 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395291, 37.731184 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.727925 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392716, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735800 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735664 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390485, 37.735087 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734374 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390742, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390914, 37.734103 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734136 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734035 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street at Palou Ave SE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390914, 37.733899 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.733865 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732270 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.732270 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.732270 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.732270 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391343, 37.732406 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732236 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.732202 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.734510 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390056, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389026, 37.732881 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392030, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.730437 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.729385 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729215 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392631, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729283 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Williams Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.729215 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727925 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390399, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727891 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397952, 37.723003 ] } } +, +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.726941 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.725685 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.725481 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725481 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.725447 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725312 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.724157 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.723784 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721136 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.722494 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.720797 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722426 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722630 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722460 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.722019 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.721408 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.727077 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727043 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719914 ] } } +, +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386880, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386880, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386794, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386708, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.755651 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387652, 37.753140 ] } } +, +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.750324 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387567, 37.749102 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.748933 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387266, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.745845 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.746048 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.745777 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387137, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386408, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740551 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742519 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383704, 37.742553 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383361, 37.743911 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743809 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383189, 37.743707 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384648, 37.741128 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.741060 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384562, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384520, 37.740687 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386537, 37.738990 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386279, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385893, 37.736614 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.740008 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.382631, 37.739872 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739804 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.382803, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384133, 37.737700 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384176, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.381773, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738752 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738616 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.380786, 37.738786 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379498, 37.737089 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379498, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379241, 37.737666 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.737021 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.735833 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732066 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387309, 37.731862 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.731862 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386622, 37.732575 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386622, 37.732372 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386065, 37.733016 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385035, 37.733186 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383533, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383533, 37.735732 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734680 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384863, 37.733050 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384777, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383103, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.729554 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385163, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386279, 37.729520 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727348 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.382674, 37.730165 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729419 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734170 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734035 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.382116, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.380013, 37.733458 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379842, 37.733288 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379928, 37.732507 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379713, 37.732406 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.734374 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Middle Point Rd E", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.734103 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.378941, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.377181, 37.732711 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.381730, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.381387, 37.730776 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.380357, 37.730573 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.381387, 37.729385 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728672 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.380185, 37.727993 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.377009, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.377095, 37.730030 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.728231 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386751, 37.726126 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726024 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727111 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.375894, 37.731998 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.375593, 37.731998 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.374048, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.729894 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730233 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.373748, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.372117, 37.729860 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.371860, 37.729894 ] } } +, +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.373147, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729147 ] } } +, +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.368727, 37.725345 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.367911, 37.725345 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.365594, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728604 ] } } +, +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.365465, 37.727925 ] } } +, +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.360959, 37.727348 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.716757 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716520 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.496486, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716248 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718488 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.478719, 37.717945 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477088, 37.717708 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477431, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716791 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.715976 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474256, 37.717436 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474599, 37.715908 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.715908 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472367, 37.717742 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.717742 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.717572 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.715976 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.718522 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.448592, 37.718285 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716248 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716044 ] } } +, +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716520 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716452 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.716655 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.440181, 37.716180 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.716112 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.430139, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718149 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.428336, 37.717470 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.425675, 37.718285 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.717300 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716655 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716587 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.717063 ] } } +, +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716112 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400184, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.716995 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.718251 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717470 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435288, 37.762674 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762607 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.792999 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Station Outbound", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Outbound", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775159 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778686 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778551 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Church Station/Outbound", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Church Station/Downtown", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784317 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Downtown", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784215 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 954, "y": 791 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +] } +] } +] } diff --git a/tests/ne_110m_admin_0_countries/out/-B10_-z0_--retain-points-multiplier_10_-d8_-yNAME.json b/tests/ne_110m_admin_0_countries/out/-B10_-z0_--retain-points-multiplier_10_-d8_-yNAME.json new file mode 100644 index 000000000..005cb994a --- /dev/null +++ b/tests/ne_110m_admin_0_countries/out/-B10_-z0_--retain-points-multiplier_10_-d8_-yNAME.json @@ -0,0 +1,308 @@ +{ "type": "FeatureCollection", "properties": { +"antimeridian_adjusted_bounds": "0.023802,-85.040752,359.950216,83.645130", +"bounds": "-180.000000,-85.051129,180.000000,83.645130", +"center": "0.000000,0.000000,0", +"description": "tests/ne_110m_admin_0_countries/out/-B10_-z0_--retain-points-multiplier_10_-d8_-yNAME.json.check.mbtiles", +"format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_admin_0_countries/out/-B10_-z0_--retain-points-multiplier_10_-d8_-yNAME.json.check.mbtiles -B10 -z0 --retain-points-multiplier 10 -d8 -yNAME tests/ne_110m_admin_0_countries/in.json.gz", +"json": "{\"vector_layers\":[{\"id\":\"in\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":0,\"fields\":{}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"in\",\"count\":177,\"geometry\":\"Polygon\",\"attributeCount\":0,\"attributes\":[]}]}}", +"maxzoom": "0", +"minzoom": "0", +"name": "tests/ne_110m_admin_0_countries/out/-B10_-z0_--retain-points-multiplier_10_-d8_-yNAME.json.check.mbtiles", +"strategies": "[{\"tiny_polygons\":59}]", +"tippecanoe_decisions": "{\"basezoom\":10,\"droprate\":2.5,\"retain_points_multiplier\":10}", +"type": "overlay", +"version": "2" +}, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.312500, 31.952162 ], [ -105.468750, 31.952162 ], [ -104.062500, 29.535230 ], [ -101.250000, 29.535230 ], [ -97.031250, 25.799891 ], [ -97.031250, 19.311143 ], [ -94.218750, 17.978733 ], [ -88.593750, 21.943046 ], [ -87.187500, 17.978733 ], [ -91.406250, 17.978733 ], [ -90.000000, 16.636192 ], [ -92.812500, 13.923404 ], [ -94.218750, 16.636192 ], [ -101.250000, 16.636192 ], [ -105.468750, 19.311143 ], [ -105.468750, 23.241346 ], [ -115.312500, 31.952162 ] ] ], [ [ [ -115.312500, 31.952162 ], [ -109.687500, 23.241346 ], [ -112.500000, 24.527135 ], [ -116.718750, 31.952162 ], [ -115.312500, 31.952162 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.593750, 17.978733 ], [ -88.593750, 15.284185 ], [ -92.812500, 13.923404 ], [ -90.000000, 16.636192 ], [ -91.406250, 17.978733 ], [ -88.593750, 17.978733 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.781250, 65.946472 ], [ -85.781250, 65.366837 ], [ -80.156250, 63.548552 ], [ -87.187500, 63.548552 ], [ -87.187500, 64.774125 ], [ -91.406250, 63.548552 ], [ -94.218750, 60.930432 ], [ -92.812500, 57.326521 ], [ -82.968750, 54.977614 ], [ -78.750000, 51.618017 ], [ -80.156250, 54.977614 ], [ -75.937500, 57.326521 ], [ -78.750000, 58.813742 ], [ -78.750000, 62.267923 ], [ -73.125000, 62.267923 ], [ -71.718750, 60.930432 ], [ -68.906250, 60.930432 ], [ -70.312500, 60.239811 ], [ -67.500000, 58.077876 ], [ -64.687500, 60.239811 ], [ -61.875000, 56.559482 ], [ -56.250000, 54.162434 ], [ -56.250000, 51.618017 ], [ -60.468750, 49.837982 ], [ -64.687500, 50.736455 ], [ -70.312500, 47.040182 ], [ -70.312500, 45.089036 ], [ -75.937500, 45.089036 ], [ -80.156250, 42.032974 ], [ -82.968750, 42.032974 ], [ -82.968750, 46.073231 ], [ -85.781250, 47.989922 ], [ -92.812500, 47.989922 ], [ -94.218750, 49.837982 ], [ -122.343750, 48.922499 ], [ -126.562500, 49.837982 ], [ -129.375000, 49.837982 ], [ -129.375000, 51.618017 ], [ -130.781250, 54.162434 ], [ -129.375000, 55.776573 ], [ -133.593750, 58.813742 ], [ -137.812500, 58.813742 ], [ -140.625000, 60.239811 ], [ -140.625000, 69.657086 ], [ -136.406250, 68.656555 ], [ -135.000000, 69.657086 ], [ -129.375000, 69.657086 ], [ -127.968750, 70.612614 ], [ -125.156250, 69.657086 ], [ -123.750000, 70.140364 ], [ -123.750000, 69.162558 ], [ -120.937500, 69.657086 ], [ -116.718750, 69.162558 ], [ -115.312500, 68.656555 ], [ -113.906250, 67.609221 ], [ -108.281250, 67.609221 ], [ -108.281250, 68.656555 ], [ -98.437500, 67.609221 ], [ -97.031250, 68.656555 ], [ -95.625000, 67.067433 ], [ -95.625000, 71.965388 ], [ -94.218750, 71.965388 ], [ -92.812500, 71.524909 ], [ -92.812500, 69.657086 ], [ -90.000000, 69.657086 ], [ -90.000000, 68.656555 ], [ -88.593750, 69.162558 ], [ -87.187500, 67.067433 ], [ -85.781250, 69.657086 ], [ -82.968750, 69.657086 ], [ -81.562500, 67.067433 ], [ -85.781250, 66.513260 ], [ -85.781250, 65.946472 ] ] ], [ [ [ -108.281250, 73.226700 ], [ -105.468750, 72.816074 ], [ -105.468750, 71.524909 ], [ -101.250000, 70.140364 ], [ -102.656250, 68.656555 ], [ -108.281250, 68.656555 ], [ -116.718750, 69.162558 ], [ -116.718750, 70.140364 ], [ -112.500000, 70.140364 ], [ -118.125000, 70.612614 ], [ -116.718750, 71.524909 ], [ -119.531250, 71.524909 ], [ -115.312500, 73.226700 ], [ -111.093750, 72.395706 ], [ -109.687500, 72.816074 ], [ -108.281250, 71.524909 ], [ -108.281250, 73.226700 ] ] ], [ [ [ -56.250000, 51.618017 ], [ -56.250000, 49.837982 ], [ -52.031250, 47.989922 ], [ -53.437500, 47.040182 ], [ -59.062500, 47.989922 ], [ -56.250000, 51.618017 ] ] ], [ [ [ -97.031250, 70.612614 ], [ -97.031250, 69.657086 ], [ -99.843750, 69.657086 ], [ -99.843750, 70.612614 ], [ -97.031250, 70.612614 ] ] ], [ [ [ -87.187500, 80.415707 ], [ -91.406250, 81.518272 ], [ -91.406250, 81.923186 ], [ -85.781250, 82.676285 ], [ -82.968750, 82.308893 ], [ -82.968750, 82.853382 ], [ -78.750000, 83.194896 ], [ -70.312500, 83.194896 ], [ -61.875000, 82.676285 ], [ -71.718750, 79.687184 ], [ -77.343750, 79.432371 ], [ -75.937500, 78.061989 ], [ -80.156250, 77.157163 ], [ -77.343750, 77.157163 ], [ -80.156250, 76.184995 ], [ -90.000000, 76.516819 ], [ -87.187500, 77.157163 ], [ -87.187500, 78.061989 ], [ -88.593750, 78.349411 ], [ -94.218750, 78.630006 ], [ -92.812500, 79.432371 ], [ -95.625000, 79.432371 ], [ -97.031250, 80.178713 ], [ -94.218750, 81.308321 ], [ -90.000000, 80.415707 ], [ -87.187500, 80.415707 ] ], [ [ -87.187500, 80.415707 ], [ -87.187500, 80.178713 ], [ -81.562500, 80.415707 ], [ -87.187500, 80.415707 ] ], [ [ -88.593750, 78.349411 ], [ -85.781250, 78.903929 ], [ -85.781250, 79.171335 ], [ -88.593750, 78.349411 ] ] ], [ [ [ -77.343750, 72.816074 ], [ -80.156250, 72.816074 ], [ -80.156250, 73.627789 ], [ -75.937500, 73.226700 ], [ -75.937500, 72.816074 ], [ -67.500000, 70.140364 ], [ -68.906250, 68.656555 ], [ -61.875000, 67.067433 ], [ -61.875000, 65.946472 ], [ -63.281250, 64.774125 ], [ -67.500000, 66.513260 ], [ -64.687500, 62.915233 ], [ -68.906250, 63.548552 ], [ -66.093750, 61.606396 ], [ -71.718750, 62.915233 ], [ -74.531250, 64.774125 ], [ -77.343750, 64.168107 ], [ -78.750000, 64.774125 ], [ -74.531250, 65.366837 ], [ -73.125000, 68.138852 ], [ -75.937500, 68.656555 ], [ -75.937500, 69.162558 ], [ -78.750000, 70.140364 ], [ -81.562500, 69.657086 ], [ -82.968750, 69.657086 ], [ -90.000000, 70.612614 ], [ -90.000000, 73.226700 ], [ -85.781250, 73.627789 ], [ -85.781250, 72.395706 ], [ -82.968750, 73.627789 ], [ -80.156250, 71.965388 ], [ -77.343750, 72.816074 ] ] ], [ [ [ -119.531250, 74.402163 ], [ -115.312500, 73.627789 ], [ -115.312500, 73.226700 ], [ -123.750000, 71.074056 ], [ -126.562500, 71.965388 ], [ -123.750000, 73.627789 ], [ -125.156250, 74.402163 ], [ -119.531250, 74.402163 ] ] ], [ [ [ -97.031250, 77.157163 ], [ -91.406250, 76.840816 ], [ -90.000000, 76.516819 ], [ -88.593750, 75.497157 ], [ -81.562500, 75.845169 ], [ -80.156250, 74.775843 ], [ -92.812500, 74.775843 ], [ -92.812500, 75.845169 ], [ -97.031250, 77.157163 ] ] ], [ [ [ -109.687500, 76.840816 ], [ -108.281250, 75.845169 ], [ -105.468750, 75.845169 ], [ -106.875000, 75.140778 ], [ -113.906250, 74.402163 ], [ -111.093750, 75.140778 ], [ -118.125000, 75.140778 ], [ -115.312500, 76.516819 ], [ -109.687500, 75.497157 ], [ -109.687500, 76.840816 ] ] ], [ [ [ -116.718750, 77.767582 ], [ -116.718750, 76.516819 ], [ -120.937500, 75.845169 ], [ -122.343750, 76.184995 ], [ -119.531250, 77.466028 ], [ -116.718750, 77.767582 ] ] ], [ [ [ -70.312500, 47.040182 ], [ -64.687500, 48.922499 ], [ -64.687500, 46.073231 ], [ -60.468750, 47.040182 ], [ -60.468750, 45.089036 ], [ -63.281250, 45.089036 ], [ -64.687500, 43.068888 ], [ -67.500000, 47.040182 ], [ -70.312500, 47.040182 ] ] ], [ [ [ -99.843750, 74.019543 ], [ -97.031250, 73.627789 ], [ -98.437500, 71.074056 ], [ -102.656250, 72.395706 ], [ -99.843750, 72.816074 ], [ -99.843750, 74.019543 ] ] ], [ [ [ -98.437500, 76.840816 ], [ -97.031250, 75.845169 ], [ -99.843750, 74.775843 ], [ -102.656250, 76.184995 ], [ -98.437500, 76.840816 ] ] ], [ [ [ -105.468750, 79.171335 ], [ -101.250000, 78.903929 ], [ -99.843750, 77.767582 ], [ -105.468750, 78.349411 ], [ -105.468750, 79.171335 ] ] ], [ [ [ -90.000000, 74.019543 ], [ -94.218750, 71.965388 ], [ -95.625000, 74.019543 ], [ -90.000000, 74.019543 ] ] ], [ [ [ -98.437500, 78.903929 ], [ -95.625000, 78.349411 ], [ -95.625000, 78.061989 ], [ -95.625000, 77.466028 ], [ -98.437500, 77.466028 ], [ -98.437500, 78.061989 ], [ -97.031250, 78.061989 ], [ -98.437500, 78.903929 ] ] ], [ [ [ -105.468750, 74.019543 ], [ -105.468750, 73.226700 ], [ -108.281250, 73.226700 ], [ -108.281250, 74.019543 ], [ -105.468750, 74.019543 ] ] ], [ [ [ -111.093750, 78.349411 ], [ -111.093750, 77.767582 ], [ -113.906250, 77.767582 ], [ -113.906250, 78.349411 ], [ -111.093750, 78.349411 ] ] ], [ [ [ -75.937500, 68.656555 ], [ -75.937500, 67.609221 ], [ -78.750000, 67.609221 ], [ -78.750000, 68.656555 ], [ -77.343750, 68.656555 ], [ -75.937500, 68.656555 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.156250, 83.676943 ], [ -26.718750, 83.520162 ], [ -21.093750, 82.676285 ], [ -22.500000, 82.308893 ], [ -32.343750, 82.118384 ], [ -28.125000, 82.118384 ], [ -25.312500, 81.723188 ], [ -22.500000, 82.118384 ], [ -22.500000, 81.093214 ], [ -15.468750, 81.923186 ], [ -12.656250, 81.723188 ], [ -12.656250, 81.308321 ], [ -19.687500, 80.178713 ], [ -19.687500, 74.402163 ], [ -23.906250, 73.226700 ], [ -22.500000, 72.395706 ], [ -25.312500, 72.395706 ], [ -21.093750, 70.612614 ], [ -23.906250, 70.612614 ], [ -25.312500, 71.524909 ], [ -26.718750, 70.140364 ], [ -22.500000, 70.140364 ], [ -32.343750, 68.138852 ], [ -33.750000, 66.513260 ], [ -40.781250, 64.774125 ], [ -42.187500, 60.930432 ], [ -45.000000, 60.239811 ], [ -52.031250, 63.548552 ], [ -53.437500, 68.138852 ], [ -50.625000, 70.140364 ], [ -53.437500, 69.162558 ], [ -54.843750, 69.657086 ], [ -54.843750, 70.612614 ], [ -52.031250, 70.612614 ], [ -53.437500, 71.524909 ], [ -56.250000, 71.524909 ], [ -54.843750, 72.816074 ], [ -59.062500, 75.497157 ], [ -61.875000, 76.184995 ], [ -68.906250, 76.184995 ], [ -71.718750, 77.157163 ], [ -66.093750, 77.466028 ], [ -71.718750, 77.767582 ], [ -73.125000, 78.349411 ], [ -64.687500, 79.687184 ], [ -67.500000, 80.415707 ], [ -61.875000, 81.308321 ], [ -63.281250, 81.723188 ], [ -60.468750, 82.118384 ], [ -53.437500, 81.923186 ], [ -50.625000, 82.494824 ], [ -45.000000, 81.723188 ], [ -46.406250, 82.676285 ], [ -43.593750, 83.194896 ], [ -39.375000, 83.194896 ], [ -35.156250, 83.676943 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -154.687500, 21.943046 ], [ -154.687500, 19.311143 ], [ -157.500000, 19.311143 ], [ -157.500000, 21.943046 ], [ -154.687500, 21.943046 ] ] ], [ [ [ -94.218750, 49.837982 ], [ -92.812500, 47.989922 ], [ -85.781250, 47.989922 ], [ -82.968750, 46.073231 ], [ -82.968750, 42.032974 ], [ -80.156250, 42.032974 ], [ -75.937500, 45.089036 ], [ -70.312500, 45.089036 ], [ -70.312500, 47.040182 ], [ -67.500000, 47.040182 ], [ -67.500000, 44.087585 ], [ -70.312500, 44.087585 ], [ -70.312500, 40.979898 ], [ -74.531250, 40.979898 ], [ -74.531250, 38.822591 ], [ -75.937500, 39.909736 ], [ -75.937500, 34.307144 ], [ -81.562500, 31.952162 ], [ -80.156250, 24.527135 ], [ -85.781250, 30.751278 ], [ -94.218750, 29.535230 ], [ -98.437500, 25.799891 ], [ -105.468750, 31.952162 ], [ -116.718750, 31.952162 ], [ -118.125000, 34.307144 ], [ -120.937500, 34.307144 ], [ -125.156250, 43.068888 ], [ -125.156250, 47.989922 ], [ -122.343750, 47.040182 ], [ -122.343750, 48.922499 ], [ -94.218750, 49.837982 ] ] ], [ [ [ -156.093750, 71.524909 ], [ -154.687500, 70.612614 ], [ -153.281250, 71.074056 ], [ -140.625000, 69.657086 ], [ -140.625000, 60.239811 ], [ -139.218750, 59.534318 ], [ -142.031250, 60.239811 ], [ -147.656250, 60.930432 ], [ -151.875000, 58.813742 ], [ -150.468750, 61.606396 ], [ -154.687500, 59.534318 ], [ -153.281250, 58.813742 ], [ -164.531250, 54.162434 ], [ -157.500000, 57.326521 ], [ -157.500000, 58.813742 ], [ -158.906250, 58.077876 ], [ -163.125000, 60.239811 ], [ -165.937500, 60.239811 ], [ -165.937500, 62.267923 ], [ -160.312500, 63.548552 ], [ -160.312500, 64.774125 ], [ -164.531250, 64.168107 ], [ -168.750000, 65.946472 ], [ -161.718750, 65.946472 ], [ -167.343750, 68.138852 ], [ -156.093750, 71.524909 ] ] ], [ [ [ -136.406250, 58.813742 ], [ -133.593750, 58.813742 ], [ -129.375000, 54.977614 ], [ -133.593750, 58.077876 ], [ -136.406250, 58.813742 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.343750, 27.059126 ], [ -77.343750, 24.527135 ], [ -80.156250, 24.527135 ], [ -80.156250, 27.059126 ], [ -77.343750, 27.059126 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375000, 17.978733 ], [ -84.375000, 15.284185 ], [ -87.187500, 15.284185 ], [ -87.187500, 17.978733 ], [ -84.375000, 17.978733 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375000, 15.284185 ], [ -82.968750, 11.178402 ], [ -87.187500, 11.178402 ], [ -87.187500, 13.923404 ], [ -84.375000, 15.284185 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375000, 12.554564 ], [ -84.375000, 9.795678 ], [ -87.187500, 9.795678 ], [ -87.187500, 12.554564 ], [ -84.375000, 12.554564 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.750000, 9.795678 ], [ -77.343750, 7.013668 ], [ -81.562500, 7.013668 ], [ -82.968750, 9.795678 ], [ -78.750000, 9.795678 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.156250, 23.241346 ], [ -74.531250, 19.311143 ], [ -84.375000, 23.241346 ], [ -80.156250, 23.241346 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.156250, 1.406109 ], [ -74.531250, -1.406109 ], [ -78.750000, -5.615986 ], [ -81.562500, -2.811371 ], [ -80.156250, 1.406109 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.718750, 12.554564 ], [ -73.125000, 7.013668 ], [ -67.500000, 5.615986 ], [ -67.500000, 1.406109 ], [ -70.312500, 1.406109 ], [ -70.312500, -4.214943 ], [ -78.750000, 1.406109 ], [ -75.937500, 11.178402 ], [ -71.718750, 12.554564 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.468750, 12.554564 ], [ -60.468750, 9.795678 ], [ -63.281250, 9.795678 ], [ -63.281250, 12.554564 ], [ -60.468750, 12.554564 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.312500, 12.554564 ], [ -66.093750, 9.795678 ], [ -61.875000, 11.178402 ], [ -63.281250, 9.795678 ], [ -59.062500, 8.407168 ], [ -61.875000, 5.615986 ], [ -60.468750, 4.214943 ], [ -64.687500, 4.214943 ], [ -63.281250, 2.811371 ], [ -67.500000, 1.406109 ], [ -67.500000, 5.615986 ], [ -73.125000, 7.013668 ], [ -73.125000, 11.178402 ], [ -71.718750, 8.407168 ], [ -70.312500, 12.554564 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.468750, 5.615986 ], [ -59.062500, 1.406109 ], [ -53.437500, 1.406109 ], [ -50.625000, 4.214943 ], [ -49.218750, -1.406109 ], [ -47.812500, 0.000000 ], [ -45.000000, -2.811371 ], [ -39.375000, -2.811371 ], [ -35.156250, -5.615986 ], [ -35.156250, -9.795678 ], [ -39.375000, -12.554564 ], [ -40.781250, -21.943046 ], [ -47.812500, -24.527135 ], [ -53.437500, -34.307144 ], [ -53.437500, -31.952162 ], [ -57.656250, -29.535230 ], [ -53.437500, -25.799891 ], [ -57.656250, -21.943046 ], [ -57.656250, -16.636192 ], [ -60.468750, -16.636192 ], [ -61.875000, -12.554564 ], [ -66.093750, -11.178402 ], [ -64.687500, -9.795678 ], [ -70.312500, -11.178402 ], [ -74.531250, -7.013668 ], [ -68.906250, -1.406109 ], [ -70.312500, 1.406109 ], [ -64.687500, 1.406109 ], [ -64.687500, 4.214943 ], [ -60.468750, 5.615986 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.468750, 8.407168 ], [ -57.656250, 7.013668 ], [ -56.250000, 1.406109 ], [ -60.468750, 2.811371 ], [ -60.468750, 8.407168 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.437500, 5.615986 ], [ -53.437500, 4.214943 ], [ -56.250000, 1.406109 ], [ -57.656250, 5.615986 ], [ -53.437500, 5.615986 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.062500, 66.513260 ], [ -14.062500, 65.366837 ], [ -19.687500, 63.548552 ], [ -23.906250, 64.774125 ], [ -23.906250, 66.513260 ], [ -14.062500, 66.513260 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.437500, 54.977614 ], [ -5.625000, 53.330873 ], [ -9.843750, 51.618017 ], [ -8.437500, 54.977614 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.031250, 42.032974 ], [ -7.031250, 36.597889 ], [ -9.843750, 38.822591 ], [ -8.437500, 42.032974 ], [ -7.031250, 42.032974 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.437500, 44.087585 ], [ 2.812500, 42.032974 ], [ 0.000000, 37.718590 ], [ -5.625000, 35.460670 ], [ -7.031250, 36.597889 ], [ -7.031250, 42.032974 ], [ -9.843750, 43.068888 ], [ -8.437500, 44.087585 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.437500, 36.597889 ], [ 7.031250, 33.137551 ], [ 9.843750, 30.751278 ], [ 9.843750, 24.527135 ], [ 12.656250, 23.241346 ], [ 5.625000, 19.311143 ], [ 2.812500, 19.311143 ], [ -8.437500, 27.059126 ], [ -4.218750, 31.952162 ], [ -1.406250, 31.952162 ], [ -2.812500, 35.460670 ], [ 0.000000, 36.597889 ], [ 8.437500, 36.597889 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.812500, 35.460670 ], [ -1.406250, 31.952162 ], [ -4.218750, 31.952162 ], [ -8.437500, 27.059126 ], [ -12.656250, 25.799891 ], [ -14.062500, 21.943046 ], [ -16.875000, 21.943046 ], [ -15.468750, 25.799891 ], [ -9.843750, 29.535230 ], [ -9.843750, 33.137551 ], [ -7.031250, 33.137551 ], [ -5.625000, 35.460670 ], [ -2.812500, 35.460670 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -12.656250, 25.799891 ], [ -11.250000, 23.241346 ], [ -16.875000, 20.632784 ], [ -12.656250, 25.799891 ] ] ], [ [ [ -8.437500, 25.799891 ], [ -12.656250, 25.799891 ], [ -11.250000, 27.059126 ], [ -8.437500, 25.799891 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.062500, 16.636192 ], [ -11.250000, 12.554564 ], [ -16.875000, 12.554564 ], [ -14.062500, 13.923404 ], [ -18.281250, 15.284185 ], [ -16.875000, 16.636192 ], [ -14.062500, 16.636192 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.437500, 27.059126 ], [ -5.625000, 24.527135 ], [ -5.625000, 15.284185 ], [ -16.875000, 16.636192 ], [ -16.875000, 21.943046 ], [ -12.656250, 21.943046 ], [ -12.656250, 25.799891 ], [ -8.437500, 27.059126 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.031250, 24.527135 ], [ 4.218750, 19.311143 ], [ 4.218750, 15.284185 ], [ -1.406250, 15.284185 ], [ -5.625000, 9.795678 ], [ -8.437500, 9.795678 ], [ -8.437500, 12.554564 ], [ -9.843750, 11.178402 ], [ -12.656250, 15.284185 ], [ -5.625000, 15.284185 ], [ -7.031250, 24.527135 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.406250, 15.284185 ], [ 2.812500, 12.554564 ], [ -5.625000, 9.795678 ], [ -1.406250, 15.284185 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.437500, 12.554564 ], [ -8.437500, 7.013668 ], [ -15.468750, 11.178402 ], [ -14.062500, 12.554564 ], [ -8.437500, 12.554564 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.250000, 11.178402 ], [ -11.250000, 8.407168 ], [ -14.062500, 8.407168 ], [ -14.062500, 11.178402 ], [ -11.250000, 11.178402 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.625000, 11.178402 ], [ -2.812500, 9.795678 ], [ -2.812500, 5.615986 ], [ -7.031250, 4.214943 ], [ -8.437500, 9.795678 ], [ -5.625000, 11.178402 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.437500, 8.407168 ], [ -7.031250, 4.214943 ], [ -11.250000, 5.615986 ], [ -11.250000, 8.407168 ], [ -8.437500, 8.407168 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.937500, 0.000000 ], [ -70.312500, -2.811371 ], [ -74.531250, -7.013668 ], [ -68.906250, -11.178402 ], [ -68.906250, -17.978733 ], [ -75.937500, -15.284185 ], [ -81.562500, -5.615986 ], [ -80.156250, -2.811371 ], [ -78.750000, -5.615986 ], [ -74.531250, -1.406109 ], [ -75.937500, 0.000000 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -73.125000, -44.087585 ], [ -73.125000, -47.989922 ], [ -73.125000, -50.736455 ], [ -68.906250, -52.482780 ], [ -67.500000, -55.776573 ], [ -70.312500, -54.162434 ], [ -71.718750, -54.162434 ], [ -71.718750, -53.330873 ], [ -73.125000, -53.330873 ], [ -74.531250, -52.482780 ], [ -75.937500, -51.618017 ], [ -75.937500, -47.040182 ], [ -73.125000, -44.087585 ] ] ], [ [ [ -70.312500, -28.304381 ], [ -73.125000, -44.087585 ], [ -74.531250, -42.032974 ], [ -70.312500, -28.304381 ] ] ], [ [ [ -70.312500, -28.304381 ], [ -68.906250, -17.978733 ], [ -67.500000, -24.527135 ], [ -70.312500, -28.304381 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.093750, -21.943046 ], [ -57.656250, -24.527135 ], [ -59.062500, -27.059126 ], [ -53.437500, -27.059126 ], [ -56.250000, -28.304381 ], [ -59.062500, -34.307144 ], [ -56.250000, -36.597889 ], [ -61.875000, -38.822591 ], [ -61.875000, -40.979898 ], [ -64.687500, -40.979898 ], [ -63.281250, -43.068888 ], [ -67.500000, -45.089036 ], [ -66.093750, -47.989922 ], [ -68.906250, -49.837982 ], [ -68.906250, -51.618017 ], [ -67.500000, -51.618017 ], [ -67.500000, -53.330873 ], [ -70.312500, -53.330873 ], [ -70.312500, -51.618017 ], [ -73.125000, -50.736455 ], [ -73.125000, -47.989922 ], [ -70.312500, -28.304381 ], [ -66.093750, -21.943046 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.687500, -9.795678 ], [ -66.093750, -11.178402 ], [ -61.875000, -12.554564 ], [ -60.468750, -16.636192 ], [ -57.656250, -16.636192 ], [ -57.656250, -20.632784 ], [ -61.875000, -19.311143 ], [ -64.687500, -23.241346 ], [ -68.906250, -21.943046 ], [ -67.500000, -9.795678 ], [ -64.687500, -9.795678 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.656250, -19.311143 ], [ -54.843750, -27.059126 ], [ -59.062500, -27.059126 ], [ -57.656250, -24.527135 ], [ -63.281250, -21.943046 ], [ -61.875000, -19.311143 ], [ -57.656250, -19.311143 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.656250, -29.535230 ], [ -53.437500, -31.952162 ], [ -54.843750, -35.460670 ], [ -59.062500, -34.307144 ], [ -57.656250, -29.535230 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.906250, 71.074056 ], [ 30.937500, 70.612614 ], [ 29.531250, 69.162558 ], [ 28.125000, 70.140364 ], [ 25.312500, 68.656555 ], [ 19.687500, 69.162558 ], [ 16.875000, 68.138852 ], [ 14.062500, 64.168107 ], [ 11.250000, 62.915233 ], [ 11.250000, 58.813742 ], [ 5.625000, 58.813742 ], [ 5.625000, 62.267923 ], [ 14.062500, 67.609221 ], [ 23.906250, 71.074056 ] ] ], [ [ [ 16.875000, 79.935918 ], [ 21.093750, 78.903929 ], [ 16.875000, 76.840816 ], [ 9.843750, 79.687184 ], [ 12.656250, 79.935918 ], [ 16.875000, 79.935918 ] ] ], [ [ [ 21.093750, 80.647035 ], [ 25.312500, 80.415707 ], [ 25.312500, 79.432371 ], [ 18.281250, 79.935918 ], [ 16.875000, 80.415707 ], [ 21.093750, 80.647035 ] ] ], [ [ [ 22.500000, 78.349411 ], [ 25.312500, 77.767582 ], [ 22.500000, 77.466028 ], [ 21.093750, 78.349411 ], [ 22.500000, 78.349411 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 70.140364 ], [ 30.937500, 62.267923 ], [ 28.125000, 60.239811 ], [ 22.500000, 59.534318 ], [ 21.093750, 60.930432 ], [ 21.093750, 62.915233 ], [ 25.312500, 65.366837 ], [ 23.906250, 68.138852 ], [ 21.093750, 69.162558 ], [ 25.312500, 68.656555 ], [ 28.125000, 70.140364 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.812500, 58.813742 ], [ -4.218750, 57.326521 ], [ -1.406250, 57.326521 ], [ -2.812500, 55.776573 ], [ 1.406250, 52.482780 ], [ -4.218750, 49.837982 ], [ -2.812500, 51.618017 ], [ -5.625000, 51.618017 ], [ -2.812500, 54.162434 ], [ -5.625000, 54.977614 ], [ -5.625000, 58.813742 ], [ -2.812500, 58.813742 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625000, 54.162434 ], [ 5.625000, 52.482780 ], [ 2.812500, 52.482780 ], [ 2.812500, 54.162434 ], [ 5.625000, 54.162434 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.656250, 58.813742 ], [ 12.656250, 57.326521 ], [ 9.843750, 57.326521 ], [ 9.843750, 58.813742 ], [ 12.656250, 58.813742 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.437500, 54.977614 ], [ 14.062500, 54.162434 ], [ 15.468750, 50.736455 ], [ 12.656250, 50.736455 ], [ 12.656250, 47.040182 ], [ 7.031250, 47.989922 ], [ 8.437500, 48.922499 ], [ 5.625000, 49.837982 ], [ 8.437500, 54.977614 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.218750, 52.482780 ], [ 4.218750, 50.736455 ], [ 1.406250, 50.736455 ], [ 1.406250, 52.482780 ], [ 4.218750, 52.482780 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -52.031250, 7.013668 ], [ -52.031250, 4.214943 ], [ -54.843750, 4.214943 ], [ -54.843750, 7.013668 ], [ -52.031250, 7.013668 ] ] ], [ [ [ 1.406250, 50.736455 ], [ 8.437500, 48.922499 ], [ 5.625000, 47.040182 ], [ 7.031250, 43.068888 ], [ 2.812500, 42.032974 ], [ -1.406250, 43.068888 ], [ -1.406250, 46.073231 ], [ -4.218750, 47.989922 ], [ 1.406250, 50.736455 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.843750, 47.989922 ], [ 9.843750, 46.073231 ], [ 5.625000, 46.073231 ], [ 7.031250, 47.989922 ], [ 9.843750, 47.989922 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 50.736455 ], [ 18.281250, 48.922499 ], [ 12.656250, 48.922499 ], [ 12.656250, 50.736455 ], [ 16.875000, 50.736455 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.281250, 54.977614 ], [ 23.906250, 54.162434 ], [ 22.500000, 48.922499 ], [ 14.062500, 51.618017 ], [ 14.062500, 54.162434 ], [ 18.281250, 54.977614 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 48.922499 ], [ 16.875000, 47.040182 ], [ 12.656250, 47.040182 ], [ 14.062500, 48.922499 ], [ 16.875000, 48.922499 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 47.989922 ], [ 16.875000, 46.073231 ], [ 14.062500, 46.073231 ], [ 14.062500, 47.989922 ], [ 16.875000, 47.989922 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.843750, 47.040182 ], [ 14.062500, 46.073231 ], [ 12.656250, 44.087585 ], [ 18.281250, 39.909736 ], [ 15.468750, 37.718590 ], [ 15.468750, 39.909736 ], [ 9.843750, 44.087585 ], [ 7.031250, 44.087585 ], [ 7.031250, 46.073231 ], [ 9.843750, 47.040182 ] ] ], [ [ [ 9.843750, 42.032974 ], [ 9.843750, 39.909736 ], [ 7.031250, 39.909736 ], [ 7.031250, 42.032974 ], [ 9.843750, 42.032974 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.062500, 46.073231 ], [ 19.687500, 45.089036 ], [ 15.468750, 45.089036 ], [ 18.281250, 42.032974 ], [ 14.062500, 46.073231 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.093750, 49.837982 ], [ 22.500000, 47.989922 ], [ 16.875000, 47.989922 ], [ 18.281250, 49.837982 ], [ 21.093750, 49.837982 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.718750, 47.989922 ], [ 29.531250, 45.089036 ], [ 22.500000, 44.087585 ], [ 19.687500, 46.073231 ], [ 22.500000, 47.989922 ], [ 26.718750, 47.989922 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.093750, 48.922499 ], [ 21.093750, 46.073231 ], [ 16.875000, 46.073231 ], [ 16.875000, 47.989922 ], [ 21.093750, 48.922499 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 45.089036 ], [ 19.687500, 43.068888 ], [ 16.875000, 43.068888 ], [ 15.468750, 45.089036 ], [ 19.687500, 45.089036 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.093750, 44.087585 ], [ 21.093750, 42.032974 ], [ 18.281250, 42.032974 ], [ 18.281250, 44.087585 ], [ 21.093750, 44.087585 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.093750, 69.162558 ], [ 23.906250, 68.138852 ], [ 23.906250, 65.946472 ], [ 18.281250, 62.915233 ], [ 18.281250, 58.813742 ], [ 12.656250, 54.977614 ], [ 11.250000, 59.534318 ], [ 11.250000, 62.915233 ], [ 14.062500, 64.168107 ], [ 15.468750, 67.067433 ], [ 21.093750, 69.162558 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 58.077876 ], [ 28.125000, 57.326521 ], [ 28.125000, 55.776573 ], [ 21.093750, 55.776573 ], [ 22.500000, 58.077876 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 59.534318 ], [ 28.125000, 58.077876 ], [ 23.906250, 58.077876 ], [ 23.906250, 59.534318 ], [ 28.125000, 59.534318 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.312500, 56.559482 ], [ 26.718750, 54.977614 ], [ 22.500000, 54.162434 ], [ 22.500000, 56.559482 ], [ 25.312500, 56.559482 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, 55.776573 ], [ 30.937500, 51.618017 ], [ 22.500000, 52.482780 ], [ 26.718750, 55.776573 ], [ 30.937500, 55.776573 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.281250, 46.073231 ], [ 22.500000, 45.089036 ], [ 22.500000, 42.032974 ], [ 18.281250, 46.073231 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.343750, 52.482780 ], [ 40.781250, 48.922499 ], [ 35.156250, 47.040182 ], [ 36.562500, 45.089036 ], [ 33.750000, 44.087585 ], [ 32.343750, 47.040182 ], [ 28.125000, 45.089036 ], [ 28.125000, 48.922499 ], [ 22.500000, 47.989922 ], [ 23.906250, 51.618017 ], [ 32.343750, 52.482780 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.843750, 37.718590 ], [ 11.250000, 36.597889 ], [ 9.843750, 30.751278 ], [ 7.031250, 34.307144 ], [ 9.843750, 37.718590 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 43.068888 ], [ 22.500000, 40.979898 ], [ 19.687500, 40.979898 ], [ 19.687500, 43.068888 ], [ 22.500000, 43.068888 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.468750, 23.241346 ], [ 14.062500, 12.554564 ], [ 4.218750, 13.923404 ], [ 4.218750, 11.178402 ], [ 0.000000, 13.923404 ], [ 4.218750, 15.284185 ], [ 4.218750, 19.311143 ], [ 12.656250, 23.241346 ], [ 15.468750, 23.241346 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.178402 ], [ 1.406250, 8.407168 ], [ 1.406250, 5.615986 ], [ -1.406250, 4.214943 ], [ -2.812500, 11.178402 ], [ 0.000000, 11.178402 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.812500, 12.554564 ], [ 4.218750, 9.795678 ], [ 1.406250, 5.615986 ], [ 2.812500, 12.554564 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.218750, 13.923404 ], [ 14.062500, 12.554564 ], [ 8.437500, 4.214943 ], [ 2.812500, 5.615986 ], [ 4.218750, 13.923404 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 4.214943 ], [ 11.250000, 1.406109 ], [ 8.437500, 1.406109 ], [ 8.437500, 4.214943 ], [ 11.250000, 4.214943 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.468750, 12.554564 ], [ 15.468750, 1.406109 ], [ 8.437500, 4.214943 ], [ 14.062500, 12.554564 ], [ 15.468750, 12.554564 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.468750, 23.241346 ], [ 23.906250, 19.311143 ], [ 22.500000, 11.178402 ], [ 16.875000, 7.013668 ], [ 14.062500, 8.407168 ], [ 15.468750, 23.241346 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.718750, 5.615986 ], [ 30.937500, 2.811371 ], [ 30.937500, -8.407168 ], [ 28.125000, -8.407168 ], [ 29.531250, -13.923404 ], [ 26.718750, -11.178402 ], [ 22.500000, -11.178402 ], [ 21.093750, -7.013668 ], [ 16.875000, -8.407168 ], [ 16.875000, -5.615986 ], [ 12.656250, -5.615986 ], [ 18.281250, 0.000000 ], [ 19.687500, 5.615986 ], [ 26.718750, 5.615986 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 44.087585 ], [ 28.125000, 42.032974 ], [ 22.500000, 40.979898 ], [ 22.500000, 44.087585 ], [ 28.125000, 44.087585 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.906250, 42.032974 ], [ 26.718750, 40.979898 ], [ 22.500000, 40.979898 ], [ 23.906250, 37.718590 ], [ 21.093750, 36.597889 ], [ 19.687500, 39.909736 ], [ 23.906250, 42.032974 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.093750, 33.137551 ], [ 25.312500, 31.952162 ], [ 23.906250, 19.311143 ], [ 9.843750, 24.527135 ], [ 11.250000, 33.137551 ], [ 16.875000, 30.751278 ], [ 19.687500, 30.751278 ], [ 21.093750, 33.137551 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 42.187500, 42.032974 ], [ 45.000000, 37.718590 ], [ 36.562500, 35.460670 ], [ 28.125000, 36.597889 ], [ 26.718750, 39.909736 ], [ 32.343750, 42.032974 ], [ 42.187500, 42.032974 ] ] ], [ [ [ 28.125000, 43.068888 ], [ 28.125000, 40.979898 ], [ 25.312500, 40.979898 ], [ 25.312500, 43.068888 ], [ 28.125000, 43.068888 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.343750, 31.952162 ], [ 35.156250, 29.535230 ], [ 33.750000, 27.059126 ], [ 32.343750, 28.304381 ], [ 36.562500, 21.943046 ], [ 25.312500, 21.943046 ], [ 25.312500, 31.952162 ], [ 32.343750, 31.952162 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375000, 33.137551 ], [ 36.562500, 31.952162 ], [ 37.968750, 29.535230 ], [ 35.156250, 29.535230 ], [ 35.156250, 33.137551 ], [ 39.375000, 33.137551 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.187500, 37.718590 ], [ 39.375000, 33.137551 ], [ 35.156250, 33.137551 ], [ 36.562500, 36.597889 ], [ 42.187500, 37.718590 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.093750, 11.178402 ], [ 26.718750, 5.615986 ], [ 19.687500, 5.615986 ], [ 18.281250, 2.811371 ], [ 15.468750, 2.811371 ], [ 14.062500, 5.615986 ], [ 21.093750, 11.178402 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.343750, 12.554564 ], [ 35.156250, 4.214943 ], [ 30.937500, 2.811371 ], [ 23.906250, 8.407168 ], [ 30.937500, 9.795678 ], [ 32.343750, 12.554564 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.562500, 21.943046 ], [ 37.968750, 17.978733 ], [ 33.750000, 9.795678 ], [ 32.343750, 12.554564 ], [ 30.937500, 9.795678 ], [ 23.906250, 8.407168 ], [ 22.500000, 15.284185 ], [ 25.312500, 21.943046 ], [ 36.562500, 21.943046 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.968750, 17.978733 ], [ 39.375000, 15.284185 ], [ 36.562500, 13.923404 ], [ 37.968750, 17.978733 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.968750, 15.284185 ], [ 47.812500, 8.407168 ], [ 39.375000, 2.811371 ], [ 35.156250, 4.214943 ], [ 35.156250, 7.013668 ], [ 32.343750, 8.407168 ], [ 37.968750, 15.284185 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.156250, 5.615986 ], [ 39.375000, 2.811371 ], [ 42.187500, 4.214943 ], [ 42.187500, -1.406109 ], [ 39.375000, -4.214943 ], [ 33.750000, -1.406109 ], [ 35.156250, 5.615986 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.218750, 11.178402 ], [ 49.218750, 9.795678 ], [ 46.406250, 8.407168 ], [ 42.187500, 11.178402 ], [ 49.218750, 11.178402 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.625000, 12.554564 ], [ 49.218750, 5.615986 ], [ 40.781250, -1.406109 ], [ 40.781250, 2.811371 ], [ 50.625000, 12.554564 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.906250, 55.776573 ], [ 73.125000, 53.330873 ], [ 77.343750, 54.162434 ], [ 80.156250, 50.736455 ], [ 84.375000, 50.736455 ], [ 87.187500, 48.922499 ], [ 85.781250, 47.040182 ], [ 82.968750, 47.040182 ], [ 82.968750, 45.089036 ], [ 80.156250, 45.089036 ], [ 80.156250, 42.032974 ], [ 71.718750, 43.068888 ], [ 66.093750, 40.979898 ], [ 64.687500, 44.087585 ], [ 61.875000, 43.068888 ], [ 59.062500, 46.073231 ], [ 56.250000, 45.089036 ], [ 54.843750, 40.979898 ], [ 50.625000, 44.087585 ], [ 53.437500, 45.089036 ], [ 53.437500, 47.040182 ], [ 49.218750, 46.073231 ], [ 46.406250, 48.922499 ], [ 50.625000, 51.618017 ], [ 61.875000, 50.736455 ], [ 61.875000, 54.162434 ], [ 68.906250, 55.776573 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 40.781250, 66.513260 ], [ 42.187500, 66.513260 ], [ 45.000000, 66.513260 ], [ 43.593750, 68.656555 ], [ 46.406250, 68.138852 ], [ 46.406250, 66.513260 ], [ 53.437500, 68.656555 ], [ 60.468750, 68.138852 ], [ 60.468750, 69.657086 ], [ 68.906250, 68.138852 ], [ 66.093750, 71.074056 ], [ 70.312500, 73.226700 ], [ 73.125000, 72.816074 ], [ 73.125000, 65.946472 ], [ 74.531250, 72.816074 ], [ 75.937500, 71.074056 ], [ 77.343750, 72.395706 ], [ 81.562500, 71.965388 ], [ 81.562500, 74.019543 ], [ 87.187500, 74.019543 ], [ 87.187500, 75.140778 ], [ 92.812500, 76.184995 ], [ 97.031250, 75.845169 ], [ 98.437500, 76.516819 ], [ 101.250000, 76.516819 ], [ 104.062500, 77.767582 ], [ 106.875000, 76.516819 ], [ 111.093750, 76.840816 ], [ 113.906250, 76.184995 ], [ 109.687500, 74.019543 ], [ 112.500000, 74.019543 ], [ 113.906250, 73.226700 ], [ 118.125000, 73.627789 ], [ 123.750000, 72.816074 ], [ 123.750000, 73.627789 ], [ 126.562500, 73.627789 ], [ 130.781250, 70.612614 ], [ 132.187500, 71.965388 ], [ 139.218750, 71.524909 ], [ 140.625000, 72.816074 ], [ 149.062500, 72.395706 ], [ 153.281250, 70.612614 ], [ 158.906250, 71.074056 ], [ 160.312500, 69.657086 ], [ 167.343750, 69.657086 ], [ 170.156250, 68.656555 ], [ 170.156250, 70.140364 ], [ 180.000000, 69.162558 ], [ 185.625000, 66.513260 ], [ 187.031250, 67.067433 ], [ 187.031250, 64.168107 ], [ 180.000000, 65.946472 ], [ 180.000000, 64.774125 ], [ 177.187500, 64.774125 ], [ 180.000000, 62.267923 ], [ 171.562500, 60.930432 ], [ 170.156250, 59.534318 ], [ 163.125000, 59.534318 ], [ 163.125000, 55.776573 ], [ 156.093750, 50.736455 ], [ 156.093750, 57.326521 ], [ 160.312500, 60.239811 ], [ 158.906250, 61.606396 ], [ 156.093750, 61.606396 ], [ 154.687500, 58.813742 ], [ 142.031250, 58.813742 ], [ 135.000000, 54.977614 ], [ 142.031250, 53.330873 ], [ 140.625000, 47.989922 ], [ 135.000000, 43.068888 ], [ 130.781250, 42.032974 ], [ 130.781250, 45.089036 ], [ 133.593750, 45.089036 ], [ 135.000000, 48.922499 ], [ 130.781250, 47.989922 ], [ 125.156250, 53.330873 ], [ 120.937500, 53.330873 ], [ 119.531250, 49.837982 ], [ 108.281250, 48.922499 ], [ 102.656250, 51.618017 ], [ 98.437500, 51.618017 ], [ 97.031250, 49.837982 ], [ 91.406250, 50.736455 ], [ 87.187500, 48.922499 ], [ 84.375000, 50.736455 ], [ 80.156250, 50.736455 ], [ 77.343750, 54.162434 ], [ 73.125000, 53.330873 ], [ 68.906250, 55.776573 ], [ 60.468750, 53.330873 ], [ 61.875000, 50.736455 ], [ 47.812500, 50.736455 ], [ 47.812500, 40.979898 ], [ 45.000000, 43.068888 ], [ 39.375000, 43.068888 ], [ 36.562500, 45.089036 ], [ 37.968750, 46.073231 ], [ 37.968750, 47.989922 ], [ 40.781250, 48.922499 ], [ 30.937500, 52.482780 ], [ 30.937500, 55.776573 ], [ 28.125000, 55.776573 ], [ 26.718750, 57.326521 ], [ 30.937500, 62.267923 ], [ 28.125000, 69.162558 ], [ 32.343750, 70.140364 ], [ 33.750000, 69.162558 ], [ 40.781250, 68.138852 ], [ 40.781250, 66.513260 ] ], [ [ 40.781250, 66.513260 ], [ 33.750000, 66.513260 ], [ 36.562500, 63.548552 ], [ 36.562500, 65.366837 ], [ 39.375000, 65.366837 ], [ 40.781250, 66.513260 ] ] ], [ [ [ -180.000000, 69.162558 ], [ -174.375000, 66.513260 ], [ -171.562500, 67.067433 ], [ -170.156250, 65.946472 ], [ -172.968750, 65.366837 ], [ -172.968750, 64.168107 ], [ -178.593750, 65.946472 ], [ -180.000000, 64.774125 ], [ -182.812500, 64.774125 ], [ -180.000000, 62.915233 ], [ -180.000000, 62.267923 ], [ -182.812500, 62.267923 ], [ -187.031250, 60.930432 ], [ -187.031250, 69.657086 ], [ -180.000000, 69.162558 ] ] ], [ [ [ 67.500000, 76.840816 ], [ 68.906250, 76.516819 ], [ 59.062500, 74.402163 ], [ 54.843750, 72.395706 ], [ 57.656250, 70.612614 ], [ 53.437500, 70.612614 ], [ 52.031250, 72.816074 ], [ 56.250000, 75.140778 ], [ 67.500000, 76.840816 ] ] ], [ [ [ 142.031250, 53.330873 ], [ 144.843750, 48.922499 ], [ 143.437500, 47.989922 ], [ 142.031250, 53.330873 ] ] ], [ [ [ 95.625000, 81.308321 ], [ 99.843750, 79.687184 ], [ 98.437500, 78.630006 ], [ 92.812500, 79.432371 ], [ 91.406250, 80.415707 ], [ 95.625000, 81.308321 ] ] ], [ [ [ 142.031250, 76.184995 ], [ 144.843750, 75.140778 ], [ 144.843750, 74.775843 ], [ 136.406250, 75.140778 ], [ 139.218750, 76.184995 ], [ 142.031250, 76.184995 ] ] ], [ [ [ 102.656250, 79.432371 ], [ 105.468750, 78.349411 ], [ 99.843750, 78.061989 ], [ 102.656250, 79.432371 ] ] ], [ [ [ 49.218750, 80.415707 ], [ 47.812500, 79.935918 ], [ 45.000000, 80.647035 ], [ 46.406250, 80.872827 ], [ 49.218750, 80.415707 ] ] ], [ [ [ 143.437500, 74.402163 ], [ 143.437500, 73.627789 ], [ 140.625000, 73.627789 ], [ 140.625000, 74.402163 ], [ 143.437500, 74.402163 ] ] ], [ [ [ 147.656250, 75.845169 ], [ 147.656250, 75.140778 ], [ 144.843750, 75.140778 ], [ 144.843750, 75.845169 ], [ 147.656250, 75.845169 ] ] ], [ [ [ 181.406250, 71.965388 ], [ 180.000000, 71.074056 ], [ 178.593750, 71.074056 ], [ 178.593750, 71.965388 ], [ 181.406250, 71.965388 ] ] ], [ [ [ 49.218750, 80.415707 ], [ 50.625000, 80.872827 ], [ 52.031250, 80.647035 ], [ 49.218750, 80.415707 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.750000, 43.068888 ], [ 80.156250, 42.032974 ], [ 71.718750, 38.822591 ], [ 68.906250, 39.909736 ], [ 73.125000, 40.979898 ], [ 70.312500, 42.032974 ], [ 71.718750, 43.068888 ], [ 78.750000, 43.068888 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 43.068888 ], [ 46.406250, 40.979898 ], [ 39.375000, 43.068888 ], [ 45.000000, 43.068888 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.406250, 42.032974 ], [ 50.625000, 40.979898 ], [ 49.218750, 37.718590 ], [ 47.812500, 39.909736 ], [ 45.000000, 39.909736 ], [ 46.406250, 42.032974 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 37.718590 ], [ 45.000000, 34.307144 ], [ 49.218750, 29.535230 ], [ 39.375000, 31.952162 ], [ 42.187500, 37.718590 ], [ 45.000000, 37.718590 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.031250, 27.059126 ], [ 52.031250, 24.527135 ], [ 49.218750, 24.527135 ], [ 49.218750, 27.059126 ], [ 52.031250, 27.059126 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.250000, 27.059126 ], [ 56.250000, 24.527135 ], [ 53.437500, 24.527135 ], [ 53.437500, 27.059126 ], [ 56.250000, 27.059126 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.562500, 31.952162 ], [ 47.812500, 29.535230 ], [ 50.625000, 24.527135 ], [ 56.250000, 21.943046 ], [ 47.812500, 16.636192 ], [ 42.187500, 16.636192 ], [ 35.156250, 27.059126 ], [ 35.156250, 29.535230 ], [ 37.968750, 29.535230 ], [ 36.562500, 31.952162 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.062500, 43.068888 ], [ 66.093750, 37.718590 ], [ 63.281250, 35.460670 ], [ 59.062500, 37.718590 ], [ 53.437500, 37.718590 ], [ 52.031250, 39.909736 ], [ 54.843750, 40.979898 ], [ 52.031250, 42.032974 ], [ 57.656250, 40.979898 ], [ 56.250000, 42.032974 ], [ 59.062500, 43.068888 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.312500, 38.822591 ], [ 71.718750, 36.597889 ], [ 71.718750, 34.307144 ], [ 66.093750, 29.535230 ], [ 60.468750, 29.535230 ], [ 60.468750, 34.307144 ], [ 66.093750, 37.718590 ], [ 68.906250, 36.597889 ], [ 70.312500, 38.822591 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.812500, 39.909736 ], [ 50.625000, 36.597889 ], [ 59.062500, 37.718590 ], [ 61.875000, 35.460670 ], [ 61.875000, 24.527135 ], [ 57.656250, 27.059126 ], [ 52.031250, 27.059126 ], [ 50.625000, 30.751278 ], [ 47.812500, 30.751278 ], [ 43.593750, 39.909736 ], [ 47.812500, 39.909736 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.031250, 19.311143 ], [ 52.031250, 15.284185 ], [ 43.593750, 12.554564 ], [ 43.593750, 17.978733 ], [ 47.812500, 16.636192 ], [ 52.031250, 19.311143 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 54.843750, 24.527135 ], [ 60.468750, 21.943046 ], [ 53.437500, 16.636192 ], [ 52.031250, 19.311143 ], [ 56.250000, 21.943046 ], [ 54.843750, 24.527135 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.062500, 46.073231 ], [ 61.875000, 43.068888 ], [ 64.687500, 44.087585 ], [ 66.093750, 40.979898 ], [ 68.906250, 40.979898 ], [ 67.500000, 36.597889 ], [ 59.062500, 43.068888 ], [ 56.250000, 40.979898 ], [ 56.250000, 45.089036 ], [ 59.062500, 46.073231 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.906250, 40.979898 ], [ 71.718750, 38.822591 ], [ 73.125000, 39.909736 ], [ 74.531250, 37.718590 ], [ 71.718750, 36.597889 ], [ 70.312500, 38.822591 ], [ 67.500000, 36.597889 ], [ 68.906250, 40.979898 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.718750, 36.597889 ], [ 77.343750, 35.460670 ], [ 73.125000, 34.307144 ], [ 75.937500, 31.952162 ], [ 68.906250, 27.059126 ], [ 71.718750, 24.527135 ], [ 61.875000, 24.527135 ], [ 63.281250, 28.304381 ], [ 60.468750, 29.535230 ], [ 66.093750, 29.535230 ], [ 71.718750, 34.307144 ], [ 71.718750, 36.597889 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.562500, 30.751278 ], [ 84.375000, 28.304381 ], [ 88.593750, 28.304381 ], [ 88.593750, 25.799891 ], [ 80.156250, 28.304381 ], [ 81.562500, 30.751278 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.562500, 11.178402 ], [ 81.562500, 8.407168 ], [ 78.750000, 8.407168 ], [ 78.750000, 11.178402 ], [ 81.562500, 11.178402 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.656250, 51.618017 ], [ 108.281250, 48.922499 ], [ 116.718750, 49.837982 ], [ 115.312500, 47.989922 ], [ 119.531250, 47.040182 ], [ 112.500000, 45.089036 ], [ 109.687500, 42.032974 ], [ 95.625000, 43.068888 ], [ 87.187500, 48.922499 ], [ 91.406250, 50.736455 ], [ 97.031250, 49.837982 ], [ 98.437500, 51.618017 ], [ 102.656250, 51.618017 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.343750, 35.460670 ], [ 81.562500, 30.751278 ], [ 80.156250, 28.304381 ], [ 87.187500, 25.799891 ], [ 88.593750, 28.304381 ], [ 97.031250, 28.304381 ], [ 94.218750, 23.241346 ], [ 92.812500, 24.527135 ], [ 88.593750, 27.059126 ], [ 88.593750, 21.943046 ], [ 80.156250, 15.284185 ], [ 78.750000, 8.407168 ], [ 75.937500, 8.407168 ], [ 73.125000, 21.943046 ], [ 70.312500, 20.632784 ], [ 67.500000, 23.241346 ], [ 71.718750, 24.527135 ], [ 68.906250, 27.059126 ], [ 75.937500, 31.952162 ], [ 73.125000, 34.307144 ], [ 77.343750, 35.460670 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.593750, 27.059126 ], [ 92.812500, 24.527135 ], [ 92.812500, 20.632784 ], [ 91.406250, 23.241346 ], [ 88.593750, 21.943046 ], [ 88.593750, 27.059126 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 108.281250, 13.923404 ], [ 109.687500, 11.178402 ], [ 105.468750, 8.407168 ], [ 104.062500, 9.795678 ], [ 108.281250, 13.923404 ] ] ], [ [ [ 108.281250, 13.923404 ], [ 102.656250, 23.241346 ], [ 108.281250, 21.943046 ], [ 105.468750, 19.311143 ], [ 108.281250, 13.923404 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.031250, 28.304381 ], [ 97.031250, 24.527135 ], [ 101.250000, 21.943046 ], [ 97.031250, 17.978733 ], [ 99.843750, 13.923404 ], [ 98.437500, 9.795678 ], [ 98.437500, 15.284185 ], [ 94.218750, 15.284185 ], [ 92.812500, 19.311143 ], [ 92.812500, 24.527135 ], [ 94.218750, 23.241346 ], [ 97.031250, 28.304381 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 99.843750, 13.923404 ], [ 97.031250, 17.978733 ], [ 99.843750, 20.632784 ], [ 105.468750, 16.636192 ], [ 105.468750, 13.923404 ], [ 99.843750, 13.923404 ] ] ], [ [ [ 99.843750, 13.923404 ], [ 99.843750, 7.013668 ], [ 98.437500, 8.407168 ], [ 99.843750, 13.923404 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.250000, 21.943046 ], [ 105.468750, 19.311143 ], [ 106.875000, 13.923404 ], [ 104.062500, 17.978733 ], [ 101.250000, 17.978733 ], [ 101.250000, 21.943046 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.156250, 53.330873 ], [ 130.781250, 47.989922 ], [ 135.000000, 48.922499 ], [ 133.593750, 45.089036 ], [ 130.781250, 45.089036 ], [ 130.781250, 42.032974 ], [ 129.375000, 43.068888 ], [ 127.968750, 40.979898 ], [ 126.562500, 42.032974 ], [ 120.937500, 38.822591 ], [ 120.937500, 40.979898 ], [ 118.125000, 38.822591 ], [ 119.531250, 36.597889 ], [ 122.343750, 37.718590 ], [ 119.531250, 35.460670 ], [ 122.343750, 28.304381 ], [ 111.093750, 20.632784 ], [ 102.656250, 23.241346 ], [ 101.250000, 20.632784 ], [ 97.031250, 24.527135 ], [ 98.437500, 28.304381 ], [ 84.375000, 28.304381 ], [ 78.750000, 31.952162 ], [ 78.750000, 34.307144 ], [ 74.531250, 36.597889 ], [ 73.125000, 39.909736 ], [ 78.750000, 40.979898 ], [ 81.562500, 43.068888 ], [ 80.156250, 45.089036 ], [ 82.968750, 45.089036 ], [ 82.968750, 47.040182 ], [ 85.781250, 47.040182 ], [ 87.187500, 48.922499 ], [ 91.406250, 47.040182 ], [ 91.406250, 45.089036 ], [ 99.843750, 42.032974 ], [ 109.687500, 42.032974 ], [ 112.500000, 45.089036 ], [ 119.531250, 47.040182 ], [ 115.312500, 47.989922 ], [ 116.718750, 49.837982 ], [ 119.531250, 49.837982 ], [ 120.937500, 53.330873 ], [ 125.156250, 53.330873 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.281250, 13.923404 ], [ 104.062500, 9.795678 ], [ 102.656250, 13.923404 ], [ 108.281250, 13.923404 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 116.718750, 7.013668 ], [ 119.531250, 5.615986 ], [ 115.312500, 4.214943 ], [ 115.312500, 1.406109 ], [ 109.687500, 1.406109 ], [ 116.718750, 7.013668 ] ] ], [ [ [ 99.843750, 7.013668 ], [ 104.062500, 4.214943 ], [ 104.062500, 1.406109 ], [ 99.843750, 7.013668 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 122.343750, 27.059126 ], [ 122.343750, 24.527135 ], [ 119.531250, 24.527135 ], [ 119.531250, 27.059126 ], [ 122.343750, 27.059126 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.375000, 43.068888 ], [ 130.781250, 42.032974 ], [ 125.156250, 37.718590 ], [ 123.750000, 39.909736 ], [ 129.375000, 43.068888 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.968750, 38.822591 ], [ 129.375000, 35.460670 ], [ 126.562500, 34.307144 ], [ 127.968750, 38.822591 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.156250, 9.795678 ], [ 126.562500, 5.615986 ], [ 123.750000, 5.615986 ], [ 122.343750, 8.407168 ], [ 125.156250, 9.795678 ] ] ], [ [ [ 122.343750, 17.978733 ], [ 120.937500, 15.284185 ], [ 123.750000, 12.554564 ], [ 119.531250, 15.284185 ], [ 120.937500, 17.978733 ], [ 122.343750, 17.978733 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 130.781250, 34.307144 ], [ 130.781250, 30.751278 ], [ 129.375000, 33.137551 ], [ 130.781250, 34.307144 ] ] ], [ [ [ 142.031250, 40.979898 ], [ 140.625000, 35.460670 ], [ 136.406250, 33.137551 ], [ 135.000000, 33.137551 ], [ 132.187500, 33.137551 ], [ 132.187500, 34.307144 ], [ 132.187500, 35.460670 ], [ 135.000000, 35.460670 ], [ 139.218750, 37.718590 ], [ 139.218750, 40.979898 ], [ 142.031250, 40.979898 ] ] ], [ [ [ 143.437500, 46.073231 ], [ 143.437500, 44.087585 ], [ 140.625000, 44.087585 ], [ 140.625000, 46.073231 ], [ 143.437500, 46.073231 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 2.811371 ], [ 14.062500, 1.406109 ], [ 14.062500, -2.811371 ], [ 12.656250, -1.406109 ], [ 11.250000, -4.214943 ], [ 8.437500, 0.000000 ], [ 11.250000, 2.811371 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 4.214943 ], [ 18.281250, 0.000000 ], [ 14.062500, -5.615986 ], [ 11.250000, -5.615986 ], [ 12.656250, -1.406109 ], [ 14.062500, -2.811371 ], [ 12.656250, 2.811371 ], [ 15.468750, 1.406109 ], [ 16.875000, 4.214943 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, -5.615986 ], [ 16.875000, -8.407168 ], [ 22.500000, -8.407168 ], [ 23.906250, -17.978733 ], [ 11.250000, -16.636192 ], [ 14.062500, -12.554564 ], [ 12.656250, -5.615986 ], [ 16.875000, -5.615986 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.156250, 4.214943 ], [ 33.750000, -1.406109 ], [ 29.531250, -1.406109 ], [ 30.937500, 4.214943 ], [ 35.156250, 4.214943 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -1.406109 ], [ 37.968750, -2.811371 ], [ 40.781250, -9.795678 ], [ 32.343750, -9.795678 ], [ 29.531250, -7.013668 ], [ 30.937500, -1.406109 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, -16.636192 ], [ 25.312500, -17.978733 ], [ 21.093750, -17.978733 ], [ 19.687500, -29.535230 ], [ 15.468750, -28.304381 ], [ 11.250000, -16.636192 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.343750, -8.407168 ], [ 33.750000, -13.923404 ], [ 23.906250, -17.978733 ], [ 22.500000, -12.554564 ], [ 26.718750, -11.178402 ], [ 29.531250, -13.923404 ], [ 28.125000, -8.407168 ], [ 32.343750, -8.407168 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.781250, -9.795678 ], [ 40.781250, -16.636192 ], [ 35.156250, -19.311143 ], [ 35.156250, -24.527135 ], [ 32.343750, -27.059126 ], [ 32.343750, -16.636192 ], [ 29.531250, -15.284185 ], [ 33.750000, -13.923404 ], [ 35.156250, -16.636192 ], [ 33.750000, -12.554564 ], [ 40.781250, -9.795678 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, -8.407168 ], [ 33.750000, -11.178402 ], [ 30.937500, -11.178402 ], [ 30.937500, -8.407168 ], [ 33.750000, -8.407168 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.312500, -17.978733 ], [ 29.531250, -21.943046 ], [ 21.093750, -27.059126 ], [ 21.093750, -17.978733 ], [ 25.312500, -17.978733 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.531250, -15.284185 ], [ 32.343750, -16.636192 ], [ 32.343750, -20.632784 ], [ 28.125000, -21.943046 ], [ 25.312500, -17.978733 ], [ 29.531250, -15.284185 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.531250, -27.059126 ], [ 29.531250, -29.535230 ], [ 26.718750, -29.535230 ], [ 26.718750, -27.059126 ], [ 29.531250, -27.059126 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.531250, -21.943046 ], [ 32.343750, -23.241346 ], [ 30.937500, -30.751278 ], [ 25.312500, -34.307144 ], [ 18.281250, -34.307144 ], [ 16.875000, -28.304381 ], [ 19.687500, -29.535230 ], [ 19.687500, -24.527135 ], [ 21.093750, -27.059126 ], [ 29.531250, -21.943046 ] ], [ [ 28.125000, -28.304381 ], [ 26.718750, -29.535230 ], [ 28.125000, -30.751278 ], [ 28.125000, -28.304381 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.218750, -12.554564 ], [ 50.625000, -16.636192 ], [ 49.218750, -15.284185 ], [ 49.218750, -20.632784 ], [ 45.000000, -25.799891 ], [ 43.593750, -17.978733 ], [ 49.218750, -12.554564 ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.187500, 0.000000 ], [ 135.000000, -2.811371 ], [ 140.625000, -2.811371 ], [ 140.625000, -9.795678 ], [ 136.406250, -4.214943 ], [ 132.187500, -4.214943 ], [ 132.187500, 0.000000 ] ] ], [ [ [ 108.281250, -7.013668 ], [ 115.312500, -8.407168 ], [ 108.281250, -8.407168 ], [ 108.281250, -7.013668 ] ] ], [ [ [ 120.937500, -2.811371 ], [ 119.531250, -5.615986 ], [ 118.125000, -2.811371 ], [ 116.718750, -4.214943 ], [ 109.687500, -2.811371 ], [ 108.281250, 0.000000 ], [ 115.312500, 1.406109 ], [ 115.312500, 4.214943 ], [ 118.125000, 4.214943 ], [ 116.718750, 2.811371 ], [ 119.531250, 1.406109 ], [ 119.531250, 0.000000 ], [ 123.750000, 0.000000 ], [ 120.937500, -1.406109 ], [ 120.937500, -2.811371 ] ] ], [ [ [ 95.625000, 5.615986 ], [ 104.062500, 0.000000 ], [ 105.468750, -5.615986 ], [ 95.625000, 5.615986 ] ] ], [ [ [ 129.375000, 4.214943 ], [ 129.375000, 1.406109 ], [ 126.562500, 1.406109 ], [ 126.562500, 4.214943 ], [ 129.375000, 4.214943 ] ] ], [ [ [ 125.156250, 1.406109 ], [ 119.531250, 0.000000 ], [ 120.937500, 1.406109 ], [ 125.156250, 1.406109 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 147.656250, -40.979898 ], [ 149.062500, -42.032974 ], [ 146.250000, -44.087585 ], [ 144.843750, -40.979898 ], [ 147.656250, -40.979898 ] ] ], [ [ [ 136.406250, -11.178402 ], [ 135.000000, -15.284185 ], [ 139.218750, -17.978733 ], [ 143.437500, -11.178402 ], [ 146.250000, -19.311143 ], [ 153.281250, -25.799891 ], [ 150.468750, -37.718590 ], [ 146.250000, -38.822591 ], [ 142.031250, -38.822591 ], [ 137.812500, -34.307144 ], [ 136.406250, -35.460670 ], [ 133.593750, -31.952162 ], [ 126.562500, -31.952162 ], [ 123.750000, -34.307144 ], [ 116.718750, -35.460670 ], [ 115.312500, -31.952162 ], [ 113.906250, -21.943046 ], [ 122.343750, -19.311143 ], [ 125.156250, -13.923404 ], [ 129.375000, -15.284185 ], [ 132.187500, -11.178402 ], [ 136.406250, -11.178402 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.625000, -2.811371 ], [ 146.250000, -4.214943 ], [ 150.468750, -11.178402 ], [ 144.843750, -7.013668 ], [ 140.625000, -9.795678 ], [ 140.625000, -2.811371 ] ] ], [ [ [ 151.875000, -1.406109 ], [ 151.875000, -4.214943 ], [ 149.062500, -4.214943 ], [ 149.062500, -1.406109 ], [ 151.875000, -1.406109 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 174.375000, -40.979898 ], [ 172.968750, -44.087585 ], [ 168.750000, -47.040182 ], [ 165.937500, -46.073231 ], [ 171.562500, -40.979898 ], [ 174.375000, -40.979898 ] ] ], [ [ [ 172.968750, -34.307144 ], [ 175.781250, -37.718590 ], [ 178.593750, -37.718590 ], [ 175.781250, -42.032974 ], [ 172.968750, -34.307144 ] ] ], [ [ [ -187.031250, -35.460670 ], [ -181.406250, -37.718590 ], [ -184.218750, -42.032974 ], [ -187.031250, -35.460670 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -60.468750, -79.687184 ], [ -59.062500, -79.935918 ], [ -60.468750, -81.093214 ], [ -66.093750, -80.647035 ], [ -66.093750, -80.178713 ], [ -61.875000, -80.415707 ], [ -60.468750, -79.687184 ] ] ], [ [ [ -46.406250, -77.767582 ], [ -43.593750, -78.349411 ], [ -43.593750, -79.935918 ], [ -50.625000, -81.093214 ], [ -54.843750, -80.647035 ], [ -50.625000, -79.687184 ], [ -49.218750, -78.061989 ], [ -46.406250, -77.767582 ] ] ], [ [ [ -149.062500, -85.622069 ], [ -143.437500, -85.051129 ], [ -143.437500, -84.541361 ], [ -150.468750, -84.267172 ], [ -150.468750, -83.829945 ], [ -153.281250, -83.676943 ], [ -153.281250, -82.118384 ], [ -157.500000, -81.093214 ], [ -150.468750, -81.308321 ], [ -146.250000, -79.935918 ], [ -154.687500, -79.171335 ], [ -158.906250, -76.840816 ], [ -151.875000, -77.466028 ], [ -146.250000, -76.516819 ], [ -144.843750, -75.140778 ], [ -139.218750, -75.140778 ], [ -136.406250, -74.402163 ], [ -116.718750, -74.402163 ], [ -113.906250, -73.627789 ], [ -112.500000, -74.775843 ], [ -111.093750, -74.402163 ], [ -106.875000, -75.140778 ], [ -101.250000, -75.140778 ], [ -99.843750, -74.775843 ], [ -104.062500, -72.816074 ], [ -98.437500, -72.816074 ], [ -95.625000, -73.627789 ], [ -90.000000, -73.226700 ], [ -88.593750, -72.395706 ], [ -85.781250, -73.627789 ], [ -81.562500, -74.019543 ], [ -80.156250, -73.226700 ], [ -77.343750, -73.226700 ], [ -74.531250, -74.019543 ], [ -73.125000, -73.226700 ], [ -67.500000, -72.816074 ], [ -68.906250, -69.162558 ], [ -66.093750, -65.946472 ], [ -57.656250, -63.548552 ], [ -63.281250, -65.366837 ], [ -61.875000, -65.946472 ], [ -66.093750, -67.609221 ], [ -61.875000, -70.140364 ], [ -60.468750, -73.627789 ], [ -70.312500, -76.516819 ], [ -77.343750, -76.840816 ], [ -73.125000, -77.767582 ], [ -74.531250, -78.349411 ], [ -77.343750, -78.349411 ], [ -75.937500, -80.178713 ], [ -59.062500, -82.308893 ], [ -57.656250, -83.194896 ], [ -52.031250, -81.923186 ], [ -47.812500, -81.723188 ], [ -42.187500, -82.118384 ], [ -40.781250, -81.308321 ], [ -28.125000, -80.415707 ], [ -29.531250, -79.171335 ], [ -36.562500, -79.171335 ], [ -35.156250, -78.061989 ], [ -29.531250, -77.157163 ], [ -29.531250, -76.516819 ], [ -22.500000, -76.184995 ], [ -16.875000, -75.140778 ], [ -15.468750, -73.226700 ], [ -9.843750, -71.074056 ], [ 1.406250, -71.524909 ], [ 8.437500, -69.657086 ], [ 9.843750, -70.612614 ], [ 15.468750, -70.612614 ], [ 18.281250, -69.657086 ], [ 26.718750, -70.612614 ], [ 33.750000, -68.656555 ], [ 39.375000, -69.657086 ], [ 52.031250, -65.946472 ], [ 56.250000, -65.946472 ], [ 61.875000, -68.138852 ], [ 68.906250, -68.138852 ], [ 70.312500, -69.162558 ], [ 67.500000, -70.140364 ], [ 67.500000, -71.965388 ], [ 70.312500, -72.395706 ], [ 73.125000, -70.140364 ], [ 78.750000, -69.162558 ], [ 78.750000, -68.138852 ], [ 87.187500, -67.067433 ], [ 88.593750, -65.946472 ], [ 88.593750, -67.067433 ], [ 95.625000, -67.609221 ], [ 99.843750, -67.067433 ], [ 102.656250, -65.366837 ], [ 106.875000, -67.067433 ], [ 109.687500, -67.067433 ], [ 111.093750, -65.946472 ], [ 116.718750, -67.067433 ], [ 133.593750, -66.513260 ], [ 135.000000, -65.366837 ], [ 137.812500, -67.067433 ], [ 146.250000, -67.067433 ], [ 146.250000, -68.138852 ], [ 154.687500, -68.656555 ], [ 161.718750, -70.612614 ], [ 170.156250, -71.074056 ], [ 170.156250, -73.226700 ], [ 167.343750, -73.627789 ], [ 163.125000, -75.845169 ], [ 163.125000, -77.157163 ], [ 167.343750, -78.630006 ], [ 161.718750, -79.171335 ], [ 160.312500, -80.872827 ], [ 163.125000, -82.308893 ], [ 168.750000, -83.359511 ], [ 168.750000, -83.829945 ], [ 172.968750, -83.979259 ], [ 172.968750, -84.405941 ], [ 175.781250, -84.124973 ], [ 178.593750, -84.405941 ], [ 180.000000, -85.051129 ], [ 180.000000, -84.673513 ], [ 181.406250, -84.124973 ], [ 182.812500, -84.405941 ], [ 184.218750, -84.124973 ], [ 185.625000, -84.541361 ], [ 187.031250, -84.124973 ], [ 187.031250, -85.622069 ], [ 180.000000, -85.622069 ], [ -149.062500, -85.622069 ] ] ], [ [ [ -163.125000, -78.349411 ], [ -158.906250, -79.171335 ], [ -161.718750, -79.687184 ], [ -163.125000, -78.349411 ] ] ], [ [ [ -120.937500, -72.816074 ], [ -120.937500, -73.627789 ], [ -123.750000, -73.627789 ], [ -123.750000, -72.816074 ], [ -120.937500, -72.816074 ] ] ], [ [ [ -101.250000, -71.524909 ], [ -99.843750, -71.965388 ], [ -95.625000, -72.395706 ], [ -101.250000, -72.395706 ], [ -101.250000, -71.524909 ] ] ], [ [ [ -70.312500, -68.656555 ], [ -68.906250, -71.965388 ], [ -74.531250, -72.395706 ], [ -74.531250, -71.074056 ], [ -71.718750, -71.074056 ], [ -70.312500, -68.656555 ] ] ], [ [ [ -149.062500, -85.622069 ], [ -180.000000, -85.622069 ], [ -187.031250, -85.622069 ], [ -187.031250, -84.405941 ], [ -184.218750, -84.124973 ], [ -180.000000, -84.673513 ], [ -180.000000, -85.051129 ], [ -178.593750, -84.124973 ], [ -177.187500, -84.405941 ], [ -175.781250, -84.124973 ], [ -174.375000, -84.541361 ], [ -170.156250, -83.829945 ], [ -163.125000, -85.051129 ], [ -157.500000, -85.402036 ], [ -154.687500, -85.051129 ], [ -150.468750, -85.287916 ], [ -149.062500, -85.622069 ] ] ] ] } } +] } +] } +] } diff --git a/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-densest-as-needed.json b/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-densest-as-needed.json index 2b1934d9f..48b02f984 100644 --- a/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-densest-as-needed.json +++ b/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-densest-as-needed.json @@ -10,6 +10,7 @@ "minzoom": "0", "name": "tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-densest-as-needed.json.check.mbtiles", "strategies": "[{\"dropped_as_needed\":167,\"tile_size_desired\":39241},{\"dropped_as_needed\":184,\"tile_size_desired\":25163},{\"dropped_as_needed\":160,\"tiny_polygons\":1,\"tile_size_desired\":21214},{\"dropped_as_needed\":133,\"tile_size_desired\":10758},{\"dropped_as_needed\":58,\"tile_size_desired\":6601},{\"tiny_polygons\":2}]", +"tippecanoe_decisions": "{\"basezoom\":0,\"droprate\":2.5,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" }, "features": [ diff --git a/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-fraction-as-needed.json b/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-fraction-as-needed.json index 3c22d4fe2..77a4a3ee5 100644 --- a/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-fraction-as-needed.json +++ b/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-fraction-as-needed.json @@ -10,6 +10,7 @@ "minzoom": "0", "name": "tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-fraction-as-needed.json.check.mbtiles", "strategies": "[{\"dropped_as_needed\":164,\"tile_size_desired\":39241},{\"dropped_as_needed\":187,\"tile_size_desired\":25163},{\"dropped_as_needed\":190,\"tiny_polygons\":1,\"tile_size_desired\":21214},{\"dropped_as_needed\":181,\"tile_size_desired\":10758},{\"dropped_as_needed\":147,\"tile_size_desired\":6601},{\"tiny_polygons\":2}]", +"tippecanoe_decisions": "{\"basezoom\":0,\"droprate\":2.5,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" }, "features": [ diff --git a/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-smallest-as-needed.json b/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-smallest-as-needed.json index 15b323623..0313e4143 100644 --- a/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-smallest-as-needed.json +++ b/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-smallest-as-needed.json @@ -10,6 +10,7 @@ "minzoom": "0", "name": "tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-smallest-as-needed.json.check.mbtiles", "strategies": "[{\"dropped_as_needed\":174,\"tile_size_desired\":39241},{\"dropped_as_needed\":200,\"tile_size_desired\":25163},{\"dropped_as_needed\":187,\"tiny_polygons\":1,\"tile_size_desired\":21214},{\"dropped_as_needed\":154,\"tile_size_desired\":10758},{\"dropped_as_needed\":79,\"tile_size_desired\":6601},{\"tiny_polygons\":2}]", +"tippecanoe_decisions": "{\"basezoom\":0,\"droprate\":2.5,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" }, "features": [ diff --git a/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--force-feature-limit.json b/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--force-feature-limit.json index 5cb6606e9..47ea11b3e 100644 --- a/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--force-feature-limit.json +++ b/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--force-feature-limit.json @@ -10,6 +10,7 @@ "minzoom": "0", "name": "tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--force-feature-limit.json.check.mbtiles", "strategies": "[{\"dropped_as_needed\":479,\"tile_size_desired\":39241},{\"dropped_as_needed\":264,\"tiny_polygons\":2,\"tile_size_desired\":25163},{\"dropped_as_needed\":221,\"tiny_polygons\":2,\"tile_size_desired\":21214},{\"dropped_as_needed\":93,\"tile_size_desired\":10758},{\"dropped_as_needed\":9,\"tile_size_desired\":6601},{\"tiny_polygons\":2}]", +"tippecanoe_decisions": "{\"basezoom\":0,\"droprate\":2.5,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" }, "features": [ diff --git a/tests/ne_110m_populated_places/out/--smallest-maximum-zoom-guess_2_-Bf20_-rf20_-pb.json b/tests/ne_110m_populated_places/out/--smallest-maximum-zoom-guess_2_-Bf20_-rf20_-pb.json index b1465ee5e..97c842734 100644 --- a/tests/ne_110m_populated_places/out/--smallest-maximum-zoom-guess_2_-Bf20_-rf20_-pb.json +++ b/tests/ne_110m_populated_places/out/--smallest-maximum-zoom-guess_2_-Bf20_-rf20_-pb.json @@ -10,6 +10,7 @@ "minzoom": "0", "name": "tests/ne_110m_populated_places/out/--smallest-maximum-zoom-guess_2_-Bf20_-rf20_-pb.json.check.mbtiles", "strategies": "[{\"dropped_by_rate\":237},{\"dropped_by_rate\":229},{}]", +"tippecanoe_decisions": "{\"basezoom\":2,\"droprate\":6.599999999999999,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" }, "features": [ diff --git a/tests/ne_110m_populated_places/out/--smallest-maximum-zoom-guess_3_-Bg.json b/tests/ne_110m_populated_places/out/--smallest-maximum-zoom-guess_3_-Bg.json index 497c82c73..811e3ecec 100644 --- a/tests/ne_110m_populated_places/out/--smallest-maximum-zoom-guess_3_-Bg.json +++ b/tests/ne_110m_populated_places/out/--smallest-maximum-zoom-guess_3_-Bg.json @@ -9,6 +9,7 @@ "maxzoom": "3", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/--smallest-maximum-zoom-guess_3_-Bg.json.check.mbtiles", +"tippecanoe_decisions": "{\"basezoom\":0,\"droprate\":2.5,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" }, "features": [ diff --git a/tests/ne_110m_populated_places/out/--smallest-maximum-zoom-guess_3_-rp.json b/tests/ne_110m_populated_places/out/--smallest-maximum-zoom-guess_3_-rp.json index c9423aae6..0e3bf1dfd 100644 --- a/tests/ne_110m_populated_places/out/--smallest-maximum-zoom-guess_3_-rp.json +++ b/tests/ne_110m_populated_places/out/--smallest-maximum-zoom-guess_3_-rp.json @@ -10,6 +10,7 @@ "minzoom": "0", "name": "tests/ne_110m_populated_places/out/--smallest-maximum-zoom-guess_3_-rp.json.check.mbtiles", "strategies": "[{\"dropped_by_rate\":230},{\"dropped_by_rate\":231},{\"dropped_by_rate\":160},{}]", +"tippecanoe_decisions": "{\"basezoom\":3,\"droprate\":2.6582825467008166,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" }, "features": [ diff --git a/tests/ne_110m_populated_places/out/-r1_-z8_-J_tests%2ffeature-filter%2fplaces-filter.json b/tests/ne_110m_populated_places/out/-r1_-z8_-J_tests%2ffeature-filter%2fplaces-filter.json index 07f77c0c1..2a1ca8b07 100644 --- a/tests/ne_110m_populated_places/out/-r1_-z8_-J_tests%2ffeature-filter%2fplaces-filter.json +++ b/tests/ne_110m_populated_places/out/-r1_-z8_-J_tests%2ffeature-filter%2fplaces-filter.json @@ -9,6 +9,7 @@ "maxzoom": "8", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-r1_-z8_-J_tests%2ffeature-filter%2fplaces-filter.json.check.mbtiles", +"tippecanoe_decisions": "{\"basezoom\":8,\"droprate\":1,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" }, "features": [ diff --git a/tests/ne_110m_populated_places/out/-yNAME_-z5_--preserve-point-density-threshold_8.json b/tests/ne_110m_populated_places/out/-yNAME_-z5_--preserve-point-density-threshold_8.json index 278d6b309..e4d008eb9 100644 --- a/tests/ne_110m_populated_places/out/-yNAME_-z5_--preserve-point-density-threshold_8.json +++ b/tests/ne_110m_populated_places/out/-yNAME_-z5_--preserve-point-density-threshold_8.json @@ -17,7 +17,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.941406, 39.707187 ] } } +{ "type": "Feature", "properties": { "NAME": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } , { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.714844, 41.836828 ] } } , diff --git a/tests/ne_110m_populated_places/out/-yNAME_-z5_-B3.json b/tests/ne_110m_populated_places/out/-yNAME_-z5_-B3.json index 0dba33944..88ae749fc 100644 --- a/tests/ne_110m_populated_places/out/-yNAME_-z5_-B3.json +++ b/tests/ne_110m_populated_places/out/-yNAME_-z5_-B3.json @@ -10,6 +10,7 @@ "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-yNAME_-z5_-B3.json.check.mbtiles", "strategies": "[{\"dropped_by_rate\":227},{\"dropped_by_rate\":227},{\"dropped_by_rate\":152},{},{},{}]", +"tippecanoe_decisions": "{\"basezoom\":3,\"droprate\":2.5,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" }, "features": [ diff --git a/tests/ne_110m_populated_places/out/-yNAME_-z5_-r1.5.json b/tests/ne_110m_populated_places/out/-yNAME_-z5_-r1.5.json index b711c0bc5..b7573c2f1 100644 --- a/tests/ne_110m_populated_places/out/-yNAME_-z5_-r1.5.json +++ b/tests/ne_110m_populated_places/out/-yNAME_-z5_-r1.5.json @@ -10,6 +10,7 @@ "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-yNAME_-z5_-r1.5.json.check.mbtiles", "strategies": "[{\"dropped_by_rate\":211},{\"dropped_by_rate\":214},{\"dropped_by_rate\":179},{\"dropped_by_rate\":138},{\"dropped_by_rate\":70},{}]", +"tippecanoe_decisions": "{\"basezoom\":5,\"droprate\":1.5,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" }, "features": [ diff --git a/tests/ne_110m_populated_places/out/-z0_-M10000_--drop-densest-as-needed_--extend-zooms-if-still-dropping-maximum_2.json b/tests/ne_110m_populated_places/out/-z0_-M10000_--drop-densest-as-needed_--extend-zooms-if-still-dropping-maximum_2.json index 2bacb7f9a..b3a7ba2ec 100644 --- a/tests/ne_110m_populated_places/out/-z0_-M10000_--drop-densest-as-needed_--extend-zooms-if-still-dropping-maximum_2.json +++ b/tests/ne_110m_populated_places/out/-z0_-M10000_--drop-densest-as-needed_--extend-zooms-if-still-dropping-maximum_2.json @@ -10,6 +10,7 @@ "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-z0_-M10000_--drop-densest-as-needed_--extend-zooms-if-still-dropping-maximum_2.json.check.mbtiles", "strategies": "[{\"dropped_as_needed\":219,\"tile_size_desired\":74734},{\"dropped_as_needed\":207,\"tile_size_desired\":44415},{\"dropped_as_needed\":181,\"tile_size_desired\":35130}]", +"tippecanoe_decisions": "{\"basezoom\":0,\"droprate\":2.5,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" }, "features": [ diff --git a/tests/ne_110m_populated_places/out/-z0_-r1_-yNAME_-ySOV0NAME_-yELEVATION_-YNAME%3aCity_-YSOV0NAME%3aCountry.json b/tests/ne_110m_populated_places/out/-z0_-r1_-yNAME_-ySOV0NAME_-yELEVATION_-YNAME%3aCity_-YSOV0NAME%3aCountry.json index 184960df9..3d6fe12ff 100644 --- a/tests/ne_110m_populated_places/out/-z0_-r1_-yNAME_-ySOV0NAME_-yELEVATION_-YNAME%3aCity_-YSOV0NAME%3aCountry.json +++ b/tests/ne_110m_populated_places/out/-z0_-r1_-yNAME_-ySOV0NAME_-yELEVATION_-YNAME%3aCity_-YSOV0NAME%3aCountry.json @@ -9,6 +9,7 @@ "maxzoom": "0", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-z0_-r1_-yNAME_-ySOV0NAME_-yELEVATION_-YNAME%3aCity_-YSOV0NAME%3aCountry.json.check.mbtiles", +"tippecanoe_decisions": "{\"basezoom\":0,\"droprate\":1,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" }, "features": [ diff --git a/tests/ne_110m_populated_places/out/-z3_-K20_-r1_-yNAME_-k2.json b/tests/ne_110m_populated_places/out/-z3_-K20_-r1_-yNAME_-k2.json index 9de2b89e8..a18caf5c4 100644 --- a/tests/ne_110m_populated_places/out/-z3_-K20_-r1_-yNAME_-k2.json +++ b/tests/ne_110m_populated_places/out/-z3_-K20_-r1_-yNAME_-k2.json @@ -10,6 +10,7 @@ "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-z3_-K20_-r1_-yNAME_-k2.json.check.mbtiles", "strategies": "[{\"coalesced_as_needed\":207},{\"coalesced_as_needed\":174},{\"coalesced_as_needed\":108},{}]", +"tippecanoe_decisions": "{\"basezoom\":3,\"droprate\":1,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" }, "features": [ diff --git a/tests/ne_110m_populated_places/out/-z3_-r1_--limit-tile-feature-count_3.json b/tests/ne_110m_populated_places/out/-z3_-r1_--limit-tile-feature-count_3.json index 92d296f27..222e3055c 100644 --- a/tests/ne_110m_populated_places/out/-z3_-r1_--limit-tile-feature-count_3.json +++ b/tests/ne_110m_populated_places/out/-z3_-r1_--limit-tile-feature-count_3.json @@ -9,6 +9,7 @@ "maxzoom": "3", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-z3_-r1_--limit-tile-feature-count_3.json.check.mbtiles", +"tippecanoe_decisions": "{\"basezoom\":3,\"droprate\":1,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" }, "features": [ diff --git a/tests/ne_110m_populated_places/out/-z3_-r1_--limit-tile-feature-count_3_--limit-tile-feature-count-at-maximum-zoom_10.json b/tests/ne_110m_populated_places/out/-z3_-r1_--limit-tile-feature-count_3_--limit-tile-feature-count-at-maximum-zoom_10.json index b65f0975d..bbc1d7cc8 100644 --- a/tests/ne_110m_populated_places/out/-z3_-r1_--limit-tile-feature-count_3_--limit-tile-feature-count-at-maximum-zoom_10.json +++ b/tests/ne_110m_populated_places/out/-z3_-r1_--limit-tile-feature-count_3_--limit-tile-feature-count-at-maximum-zoom_10.json @@ -9,6 +9,7 @@ "maxzoom": "3", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-z3_-r1_--limit-tile-feature-count_3_--limit-tile-feature-count-at-maximum-zoom_10.json.check.mbtiles", +"tippecanoe_decisions": "{\"basezoom\":3,\"droprate\":1,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" }, "features": [ diff --git a/tests/ne_110m_populated_places/out/-zg_-K20_-r1_-yNAME.json b/tests/ne_110m_populated_places/out/-zg_-K20_-r1_-yNAME.json index 3e42aa9a5..89af6e3a4 100644 --- a/tests/ne_110m_populated_places/out/-zg_-K20_-r1_-yNAME.json +++ b/tests/ne_110m_populated_places/out/-zg_-K20_-r1_-yNAME.json @@ -10,6 +10,7 @@ "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-zg_-K20_-r1_-yNAME.json.check.mbtiles", "strategies": "[{\"coalesced_as_needed\":207},{\"coalesced_as_needed\":174},{\"coalesced_as_needed\":108},{\"coalesced_as_needed\":51}]", +"tippecanoe_decisions": "{\"basezoom\":3,\"droprate\":1,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" }, "features": [ diff --git a/tests/ne_110m_populated_places/out/-zg_-K20_-r1_-yNAME_-kg.json b/tests/ne_110m_populated_places/out/-zg_-K20_-r1_-yNAME_-kg.json index c0c54f39e..8ea0e2695 100644 --- a/tests/ne_110m_populated_places/out/-zg_-K20_-r1_-yNAME_-kg.json +++ b/tests/ne_110m_populated_places/out/-zg_-K20_-r1_-yNAME_-kg.json @@ -10,6 +10,7 @@ "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-zg_-K20_-r1_-yNAME_-kg.json.check.mbtiles", "strategies": "[{\"coalesced_as_needed\":207},{\"coalesced_as_needed\":174},{\"coalesced_as_needed\":108},{}]", +"tippecanoe_decisions": "{\"basezoom\":3,\"droprate\":1,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" }, "features": [ diff --git a/tests/pbf/0-0-0-filter-mult.pbf.json b/tests/pbf/0-0-0-filter-mult.pbf.json new file mode 100644 index 000000000..996249e17 --- /dev/null +++ b/tests/pbf/0-0-0-filter-mult.pbf.json @@ -0,0 +1,19 @@ +{ "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 0, "NAME": "Los Angeles" }, "geometry": { "type": "Point", "coordinates": [ -118.125000, 33.943360 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.087891, 51.508742 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NAME": "Santiago" }, "geometry": { "type": "Point", "coordinates": [ -70.664062, -33.431441 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NAME": "Rome" }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 41.902277 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NAME": "Lagos" }, "geometry": { "type": "Point", "coordinates": [ 3.427734, 6.402648 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NAME": "Riyadh" }, "geometry": { "type": "Point", "coordinates": [ 46.757812, 24.607069 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.886719, 1.230374 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NAME": "Cape Town" }, "geometry": { "type": "Point", "coordinates": [ 18.457031, -33.943360 ] } } +] } +] } diff --git a/tests/pbf/0-0-0-pop-expr.pbf.json b/tests/pbf/0-0-0-pop-expr.pbf.json new file mode 100644 index 000000000..1dd038bba --- /dev/null +++ b/tests/pbf/0-0-0-pop-expr.pbf.json @@ -0,0 +1,57 @@ +{ "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "NAME": "Los Angeles" }, "geometry": { "type": "Point", "coordinates": [ -118.125000, 33.943360 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.140625, 19.394068 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Washington, D.C." }, "geometry": { "type": "Point", "coordinates": [ -76.992188, 38.891033 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -74.003906, 40.713956 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Bogota" }, "geometry": { "type": "Point", "coordinates": [ -74.091797, 4.565474 ] } } +, +{ "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.087891, 51.508742 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Santiago" }, "geometry": { "type": "Point", "coordinates": [ -70.664062, -33.431441 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Sao Paulo" }, "geometry": { "type": "Point", "coordinates": [ -46.582031, -23.563987 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Rio de Janeiro" }, "geometry": { "type": "Point", "coordinates": [ -43.242188, -22.917923 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Paris" }, "geometry": { "type": "Point", "coordinates": [ 2.373047, 48.864715 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Rome" }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 41.902277 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.003906, 41.112469 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.727110 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Lagos" }, "geometry": { "type": "Point", "coordinates": [ 3.427734, 6.402648 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.289062, 30.069094 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Riyadh" }, "geometry": { "type": "Point", "coordinates": [ 46.757812, 24.607069 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kolkata" }, "geometry": { "type": "Point", "coordinates": [ 88.330078, 22.512557 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Mumbai" }, "geometry": { "type": "Point", "coordinates": [ 72.861328, 18.979026 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.886719, 1.230374 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Beijing" }, "geometry": { "type": "Point", "coordinates": [ 116.367188, 39.909736 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Hong Kong" }, "geometry": { "type": "Point", "coordinates": [ 114.169922, 22.268764 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Shanghai" }, "geometry": { "type": "Point", "coordinates": [ 121.464844, 31.203405 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.675147 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Cape Town" }, "geometry": { "type": "Point", "coordinates": [ 18.457031, -33.943360 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.826172, -1.318243 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.875000, -6.227934 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Sydney" }, "geometry": { "type": "Point", "coordinates": [ 151.171875, -33.943360 ] } } +] } +] } diff --git a/tests/pbf/0-0-0-pop-filtered.pbf.json b/tests/pbf/0-0-0-pop-filtered.pbf.json new file mode 100644 index 000000000..9e2b28552 --- /dev/null +++ b/tests/pbf/0-0-0-pop-filtered.pbf.json @@ -0,0 +1,21 @@ +{ "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Castries" }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 14.008696 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -175.166016, -21.125498 ], [ 184.833984, -21.125498 ] ] } } +, +{ "type": "Feature", "properties": { "NAME": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.347656, 48.166085 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Niamey" }, "geometry": { "type": "Point", "coordinates": [ 2.109375, 13.496473 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.121094, 9.535749 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.062500, 30.675715 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Cape Town" }, "geometry": { "type": "Point", "coordinates": [ 18.457031, -33.943360 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 178.505859, -18.145852 ], [ -181.582031, -18.145852 ] ] } } +] } +] } diff --git a/tests/pbf/0-0-0-pop.pbf b/tests/pbf/0-0-0-pop.pbf new file mode 100644 index 000000000..5ee6c84a1 Binary files /dev/null and b/tests/pbf/0-0-0-pop.pbf differ diff --git a/tests/pmtiles/hackspots.json b/tests/pmtiles/hackspots.json index 70677bf6e..77b35384b 100644 --- a/tests/pmtiles/hackspots.json +++ b/tests/pmtiles/hackspots.json @@ -9,6 +9,7 @@ "maxzoom": "14", "minzoom": "0", "name": "tests/pmtiles/hackspots.pmtiles", +"tippecanoe_decisions": "{\"basezoom\":14,\"droprate\":1,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" }, "features": [ diff --git a/tests/raw-tiles/raw-tiles-z67.json b/tests/raw-tiles/raw-tiles-z67.json index 81b2ce8bb..99a462bba 100644 --- a/tests/raw-tiles/raw-tiles-z67.json +++ b/tests/raw-tiles/raw-tiles-z67.json @@ -9,6 +9,7 @@ "maxzoom": "14", "minzoom": "0", "name": "tests/raw-tiles/raw-tiles", +"tippecanoe_decisions": "{\"basezoom\":14,\"droprate\":1,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" }, "features": [ diff --git a/tests/raw-tiles/raw-tiles.json b/tests/raw-tiles/raw-tiles.json index 47910922d..4b9422fe0 100644 --- a/tests/raw-tiles/raw-tiles.json +++ b/tests/raw-tiles/raw-tiles.json @@ -9,6 +9,7 @@ "maxzoom": "14", "minzoom": "0", "name": "tests/raw-tiles/raw-tiles", +"tippecanoe_decisions": "{\"basezoom\":14,\"droprate\":1,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" }, "features": [ diff --git a/tests/stable/out/-z3_-B0.json b/tests/stable/out/-z3_-B0.json index 8da34c73d..1d7c99f53 100644 --- a/tests/stable/out/-z3_-B0.json +++ b/tests/stable/out/-z3_-B0.json @@ -9,6 +9,7 @@ "maxzoom": "3", "minzoom": "0", "name": "tests/stable/out/-z3_-B0.json.check.mbtiles", +"tippecanoe_decisions": "{\"basezoom\":0,\"droprate\":2.5,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" }, "features": [ diff --git a/tile-join.cpp b/tile-join.cpp index 6e2f93199..c70fb501f 100644 --- a/tile-join.cpp +++ b/tile-join.cpp @@ -155,46 +155,8 @@ void append_tile(std::string message, int z, unsigned x, unsigned y, std::map exclude_attributes; - if (filter != NULL) { - std::map attributes; - - for (size_t t = 0; t + 1 < feat.tags.size(); t += 2) { - std::string key = layer.keys[feat.tags[t]]; - mvt_value &val = layer.values[feat.tags[t + 1]]; - - attributes.insert(std::pair(key, val)); - } - - if (feat.has_id) { - mvt_value v; - v.type = mvt_uint; - v.numeric_value.uint_value = feat.id; - - attributes.insert(std::pair("$id", v)); - } - - mvt_value v; - v.type = mvt_string; - - if (feat.type == mvt_point) { - v.string_value = "Point"; - } else if (feat.type == mvt_linestring) { - v.string_value = "LineString"; - } else if (feat.type == mvt_polygon) { - v.string_value = "Polygon"; - } - - attributes.insert(std::pair("$type", v)); - - mvt_value v2; - v2.type = mvt_uint; - v2.numeric_value.uint_value = z; - - attributes.insert(std::pair("$zoom", v2)); - - if (!evaluate(attributes, layer.name, filter, exclude_attributes)) { - continue; - } + if (!evaluate(feat, layer, filter, exclude_attributes, z)) { + continue; } mvt_feature outfeature; @@ -782,7 +744,7 @@ struct tileset_reader { } if (source.layers.size() != 0) { - std::string ret = overzoom(source, parent_tile.z, parent_tile.x, parent_tile.y, tile.z, tile.x, tile.y, -1, buffer, std::set(), false, &next_overzoomed_tiles); + std::string ret = overzoom(source, parent_tile.z, parent_tile.x, parent_tile.y, tile.z, tile.x, tile.y, -1, buffer, std::set(), false, &next_overzoomed_tiles, false, NULL); return ret; } @@ -1606,7 +1568,7 @@ int main(int argc, char **argv) { st.maxlon2 = st.maxlon; } - metadata m = make_metadata(name.c_str(), st.minzoom, st.maxzoom, st.minlat, st.minlon, st.maxlat, st.maxlon, st.minlat2, st.minlon2, st.maxlat2, st.maxlon2, st.midlat, st.midlon, attribution.size() != 0 ? attribution.c_str() : NULL, layermap, true, description.c_str(), !pg, attribute_descriptions, "tile-join", generator_options, strategies); + metadata m = make_metadata(name.c_str(), st.minzoom, st.maxzoom, st.minlat, st.minlon, st.maxlat, st.maxlon, st.minlat2, st.minlon2, st.maxlat2, st.maxlon2, st.midlat, st.midlon, attribution.size() != 0 ? attribution.c_str() : NULL, layermap, true, description.c_str(), !pg, attribute_descriptions, "tile-join", generator_options, strategies, st.maxzoom, 2.5, 1); if (outdb != NULL) { mbtiles_write_metadata(outdb, m, true); diff --git a/tile.cpp b/tile.cpp index fbfd4de04..4e7cc830f 100644 --- a/tile.cpp +++ b/tile.cpp @@ -1456,7 +1456,11 @@ void remove_attributes(serial_feature &sf, std::set const &exclude_ } } -serial_feature next_feature(decompressor *geoms, std::atomic *geompos_in, int z, unsigned tx, unsigned ty, unsigned *initial_x, unsigned *initial_y, long long *original_features, long long *unclipped_features, int nextzoom, int maxzoom, int minzoom, int max_zoom_increment, size_t pass, std::atomic *along, long long alongminus, int buffer, int *within, compressor **geomfile, std::atomic *geompos, std::atomic *oprogress, double todo, const char *fname, int child_shards, struct json_object *filter, const char *stringpool, long long *pool_off, std::vector> *layer_unmaps, bool first_time, bool compressed) { +struct multiplier_state { + std::map count; +}; + +serial_feature next_feature(decompressor *geoms, std::atomic *geompos_in, int z, unsigned tx, unsigned ty, unsigned *initial_x, unsigned *initial_y, long long *original_features, long long *unclipped_features, int nextzoom, int maxzoom, int minzoom, int max_zoom_increment, size_t pass, std::atomic *along, long long alongminus, int buffer, int *within, compressor **geomfile, std::atomic *geompos, std::atomic *oprogress, double todo, const char *fname, int child_shards, struct json_object *filter, const char *stringpool, long long *pool_off, std::vector> *layer_unmaps, bool first_time, bool compressed, multiplier_state *multiplier_state) { while (1) { serial_feature sf; std::string s; @@ -1583,8 +1587,36 @@ serial_feature next_feature(decompressor *geoms, std::atomic *geompos } } - if (sf.tippecanoe_minzoom == -1 && z < sf.feature_minzoom) { + if (sf.tippecanoe_minzoom == -1) { + bool keep = false; + + std::string layername = (*layer_unmaps)[sf.segment][sf.layer]; + auto count = multiplier_state->count.find(layername); + if (count == multiplier_state->count.end()) { + multiplier_state->count.emplace(layername, 0); + count = multiplier_state->count.find(layername); + keep = true; // the first feature in each layer in each tile is always kept + } + sf.dropped = true; + + if (z >= sf.feature_minzoom || keep) { + count->second = retain_points_multiplier; + + if (retain_points_multiplier > 1) { + serial_val val; + val.type = mvt_bool; + val.s = "true"; + + sf.full_keys.push_back("tippecanoe:retain_points_multiplier_first"); + sf.full_values.push_back(val); + } + } + + if (count->second > 0) { + sf.dropped = false; + count->second -= 1; + } } // Remove nulls, now that the expression evaluation filter has run @@ -1646,9 +1678,10 @@ struct run_prefilter_args { void *run_prefilter(void *v) { run_prefilter_args *rpa = (run_prefilter_args *) v; json_writer state(rpa->prefilter_fp); + struct multiplier_state multiplier_state; while (1) { - serial_feature sf = next_feature(rpa->geoms, rpa->geompos_in, rpa->z, rpa->tx, rpa->ty, rpa->initial_x, rpa->initial_y, rpa->original_features, rpa->unclipped_features, rpa->nextzoom, rpa->maxzoom, rpa->minzoom, rpa->max_zoom_increment, rpa->pass, rpa->along, rpa->alongminus, rpa->buffer, rpa->within, rpa->geomfile, rpa->geompos, rpa->oprogress, rpa->todo, rpa->fname, rpa->child_shards, rpa->filter, rpa->stringpool, rpa->pool_off, rpa->layer_unmaps, rpa->first_time, rpa->compressed); + serial_feature sf = next_feature(rpa->geoms, rpa->geompos_in, rpa->z, rpa->tx, rpa->ty, rpa->initial_x, rpa->initial_y, rpa->original_features, rpa->unclipped_features, rpa->nextzoom, rpa->maxzoom, rpa->minzoom, rpa->max_zoom_increment, rpa->pass, rpa->along, rpa->alongminus, rpa->buffer, rpa->within, rpa->geomfile, rpa->geompos, rpa->oprogress, rpa->todo, rpa->fname, rpa->child_shards, rpa->filter, rpa->stringpool, rpa->pool_off, rpa->layer_unmaps, rpa->first_time, rpa->compressed, &multiplier_state); if (sf.t < 0) { break; } @@ -1841,15 +1874,27 @@ void preserve_attributes(std::map const *attribute_ac } } -bool find_partial(std::vector &partials, serial_feature &sf, ssize_t &out, std::vector> *layer_unmaps, long long maxextent) { +// This function finds the feature in `partials` onto which the attributes or geometry +// of a feature that is being dropped (`sf`) will be accumulated or coalesced. It +// ordinarily returns the most recently-added feature from the same layer as the feature +// that is being dropped, but if there is an active multiplier, will walk multiple +// features backward so that the features being dropped will be accumulated round-robin +// onto the N features that are being kept. The caller increments the `multiplier_seq` +// mod N with each dropped feature to drive the round-robin decision. +// +bool find_partial(std::vector &partials, serial_feature &sf, ssize_t &out, std::vector> *layer_unmaps, long long maxextent, ssize_t multiplier_seq) { for (size_t i = partials.size(); i > 0; i--) { if (partials[i - 1].t == sf.t) { std::string &layername1 = (*layer_unmaps)[partials[i - 1].segment][partials[i - 1].layer]; std::string &layername2 = (*layer_unmaps)[sf.segment][sf.layer]; if (layername1 == layername2 && partials[i - 1].extent <= maxextent) { - out = i - 1; - return true; + if (multiplier_seq <= 0) { + out = i - 1; + return true; + } + + multiplier_seq--; } } } @@ -2069,12 +2114,14 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch prefilter_jp = json_begin_file(prefilter_read_fp); } + struct multiplier_state multiplier_state; + size_t multiplier_seq = retain_points_multiplier - 1; for (size_t seq = 0;; seq++) { serial_feature sf; ssize_t which_partial = -1; if (prefilter == NULL) { - sf = next_feature(geoms, geompos_in, z, tx, ty, initial_x, initial_y, &original_features, &unclipped_features, nextzoom, maxzoom, minzoom, max_zoom_increment, pass, along, alongminus, buffer, within, geomfile, geompos, &oprogress, todo, fname, child_shards, filter, stringpool, pool_off, layer_unmaps, first_time, compressed_input); + sf = next_feature(geoms, geompos_in, z, tx, ty, initial_x, initial_y, &original_features, &unclipped_features, nextzoom, maxzoom, minzoom, max_zoom_increment, pass, along, alongminus, buffer, within, geomfile, geompos, &oprogress, todo, fname, child_shards, filter, stringpool, pool_off, layer_unmaps, first_time, compressed_input, &multiplier_state); } else { sf = parse_feature(prefilter_jp, z, tx, ty, layermaps, tiling_seg, layer_unmaps, postfilter != NULL); } @@ -2098,15 +2145,19 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch } if (sf.dropped) { - if (find_partial(partials, sf, which_partial, layer_unmaps, LLONG_MAX)) { + multiplier_seq = (multiplier_seq + 1) % retain_points_multiplier; + + if (find_partial(partials, sf, which_partial, layer_unmaps, LLONG_MAX, multiplier_seq)) { preserve_attributes(arg->attribute_accum, sf, stringpool, pool_off, partials[which_partial]); strategy->dropped_by_rate++; continue; } + } else { + multiplier_seq = retain_points_multiplier - 1; } if (gamma > 0) { - if (manage_gap(sf.index, &previndex, scale, gamma, &gap) && find_partial(partials, sf, which_partial, layer_unmaps, LLONG_MAX)) { + if (manage_gap(sf.index, &previndex, scale, gamma, &gap) && find_partial(partials, sf, which_partial, layer_unmaps, LLONG_MAX, multiplier_seq)) { preserve_attributes(arg->attribute_accum, sf, stringpool, pool_off, partials[which_partial]); strategy->dropped_by_gamma++; continue; @@ -2125,7 +2176,7 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch if (indices.size() < MAX_INDICES) { indices.push_back(sf.index); } - if ((sf.index < merge_previndex || sf.index - merge_previndex < mingap) && find_partial(partials, sf, which_partial, layer_unmaps, LLONG_MAX)) { + if ((sf.index < merge_previndex || sf.index - merge_previndex < mingap) && find_partial(partials, sf, which_partial, layer_unmaps, LLONG_MAX, multiplier_seq)) { partials[which_partial].clustered++; if (partials[which_partial].t == VT_POINT && @@ -2148,7 +2199,7 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch if (indices.size() < MAX_INDICES) { indices.push_back(sf.index); } - if (sf.index - merge_previndex < mingap && find_partial(partials, sf, which_partial, layer_unmaps, LLONG_MAX)) { + if (sf.index - merge_previndex < mingap && find_partial(partials, sf, which_partial, layer_unmaps, LLONG_MAX, multiplier_seq)) { preserve_attributes(arg->attribute_accum, sf, stringpool, pool_off, partials[which_partial]); strategy->dropped_as_needed++; continue; @@ -2157,7 +2208,7 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch if (indices.size() < MAX_INDICES) { indices.push_back(sf.index); } - if (sf.index - merge_previndex < mingap && find_partial(partials, sf, which_partial, layer_unmaps, LLONG_MAX)) { + if (sf.index - merge_previndex < mingap && find_partial(partials, sf, which_partial, layer_unmaps, LLONG_MAX, multiplier_seq)) { coalesce_geometry(partials[which_partial], sf); partials[which_partial].coalesced = true; coalesced_area += sf.extent; @@ -2169,14 +2220,14 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch add_sample_to(extents, sf.extent, extents_increment, seq); // search here is for LLONG_MAX, not minextent, because we are dropping features, not coalescing them, // so we shouldn't expect to find anything small that we can related this feature to. - if (minextent != 0 && sf.extent + coalesced_area <= minextent && find_partial(partials, sf, which_partial, layer_unmaps, LLONG_MAX)) { + if (minextent != 0 && sf.extent + coalesced_area <= minextent && find_partial(partials, sf, which_partial, layer_unmaps, LLONG_MAX, multiplier_seq)) { preserve_attributes(arg->attribute_accum, sf, stringpool, pool_off, partials[which_partial]); strategy->dropped_as_needed++; continue; } } else if (additional[A_COALESCE_SMALLEST_AS_NEEDED]) { add_sample_to(extents, sf.extent, extents_increment, seq); - if (minextent != 0 && sf.extent + coalesced_area <= minextent && find_partial(partials, sf, which_partial, layer_unmaps, minextent)) { + if (minextent != 0 && sf.extent + coalesced_area <= minextent && find_partial(partials, sf, which_partial, layer_unmaps, minextent, multiplier_seq)) { coalesce_geometry(partials[which_partial], sf); partials[which_partial].coalesced = true; coalesced_area += sf.extent; @@ -2199,7 +2250,7 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch } fraction_accum += fraction; - if (fraction_accum < 1 && find_partial(partials, sf, which_partial, layer_unmaps, LLONG_MAX)) { + if (fraction_accum < 1 && find_partial(partials, sf, which_partial, layer_unmaps, LLONG_MAX, multiplier_seq)) { if (additional[A_COALESCE_FRACTION_AS_NEEDED]) { coalesce_geometry(partials[which_partial], sf); partials[which_partial].coalesced = true; diff --git a/version.hpp b/version.hpp index 802557df1..6549d311f 100644 --- a/version.hpp +++ b/version.hpp @@ -1,6 +1,6 @@ #ifndef VERSION_HPP #define VERSION_HPP -#define VERSION "v2.40.0" +#define VERSION "v2.41.0" #endif